返回列表 發帖
  1. import java.text.DecimalFormat;
  2. import java.util.Scanner;
  3. public class Cn {

  4.         public static void main(String[] args) {
  5.                 int a,b,c;
  6.                 Scanner s = new Scanner(System.in);

  7.                 try
  8.                 {
  9.                         a=s.nextInt();
  10.                         if(a<0)
  11.                                 a=0;
  12.                 }
  13.                 catch(Exception e)
  14.                 {
  15.                         a=0;
  16.                         s.next();
  17.                 }
  18.                 try
  19.                 {
  20.                         b=s.nextInt();
  21.                         if(b<0)
  22.                                 b=0;
  23.                 }
  24.                 catch(Exception e)
  25.                 {
  26.                         b=0;
  27.                         s.next();
  28.                 }
  29.                 try
  30.                 {
  31.                         c=s.nextInt();
  32.                         if(c<0)
  33.                                 c=0;
  34.                 }
  35.                 catch(Exception e)
  36.                 {
  37.                         c=0;
  38.                         s.next();
  39.                 }
  40.                 int sum=a+5*b+10*c;
  41.                 DecimalFormat fomatter=new DecimalFormat("#,###");
  42.                 System.out.println(fomatter.format(sum));



  43.         }

  44. }
複製代碼

TOP

返回列表