- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class Cn {
- public static void main(String[] args) {
- int a,b,c;
- Scanner s = new Scanner(System.in);
- try
- {
- a=s.nextInt();
- if(a<0)
- a=0;
- }
- catch(Exception e)
- {
- a=0;
- s.next();
- }
- try
- {
- b=s.nextInt();
- if(b<0)
- b=0;
- }
- catch(Exception e)
- {
- b=0;
- s.next();
- }
- try
- {
- c=s.nextInt();
- if(c<0)
- c=0;
- }
- catch(Exception e)
- {
- c=0;
- s.next();
- }
- int sum=a+5*b+10*c;
- DecimalFormat fomatter=new DecimalFormat("#,###");
- System.out.println(fomatter.format(sum));
- }
- }
複製代碼 |