- import java.util.*;
- import java.text.*;
- public class Ch01
- {
- public static void main(String[] args)
- {
- Scanner s = new Scanner(System.in);
- int a,b,c,x;
- 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();
- }
- x=a+b*5+c*10;
- DecimalFormat d=new DecimalFormat("#,###");
- System.out.print(d.format(x));
- }
- }
-
複製代碼 |