- 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;
- try
- {
- a=s.nextInt();
- if(a<0)
- a=0;
- s.next();
- }catch(Exception e)
- {
- a=0;
- }
- 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+b*5+c*10;
- DecimalFormat v=new DecimalFormat ("#,###");
- System.out.println(v.format(sum));
- }
- }
-
複製代碼 |