返回列表 發帖
  1. import java.util.*;
  2. import java.text.*;
  3. public class Ch01 {

  4.         public static void main(String[] args) {
  5.                 Scanner s=new Scanner (System.in);
  6.                 int a,b,c;
  7.                 try
  8.                 {
  9.                          a=s.nextInt();
  10.                          if(a<0)
  11.                                         a=0;
  12.                          s.next();
  13.                 }catch(Exception e)
  14.                 {
  15.                         a=0;
  16.                 }
  17.                 try
  18.                 {
  19.                         b=s.nextInt();
  20.                         if(b<0)
  21.                                 b=0;
  22.                        
  23.                 }catch(Exception e)
  24.                 {
  25.                         b=0;
  26.                         s.next();
  27.                 }
  28.                 try
  29.                 {
  30.                         c=s.nextInt();
  31.                         if(c<0)
  32.                                 c=0;
  33.                        
  34.                 }catch(Exception e)
  35.                 {
  36.                         c=0;
  37.                         s.next();
  38.                 }
  39.                 int sum=a+b*5+c*10;
  40.                 DecimalFormat v=new DecimalFormat ("#,###");
  41.                 System.out.println(v.format(sum));
  42.         }
  43. }
  44.         
複製代碼

TOP

返回列表