返回列表 發帖
  1. import java.text.*;
  2. import java.util.*;
  3. public class JPA06{
  4.     public static void main(String[] args){
  5.         Scanner s=new Scanner(System.in);
  6.         int a[]={0,0,0};
  7.         int total;
  8.         for(int i=0;i<3;i++){
  9.                 try{
  10.                     a[i]=s.nextInt();
  11.                     if(a[i]<0){
  12.                             a[i]=0;
  13.                     }
  14.                 }catch(Exception e){
  15.                     a[i]=0;
  16.                         s.next();
  17.                 }
  18.         }
  19.         total=a[0]+a[1]*5+a[2]*10;
  20.         s.close();
  21.         DecimalFormat x=new DecimalFormat("#,###");
  22.         System.out.print(x.format(total));
  23.     }
  24. }
複製代碼

TOP

返回列表