返回列表 發帖
  1. import java.text.DecimalFormat;
  2. import java.util.Scanner;


  3. public class JPA01 {
  4.         int o,f,t,total=0;
  5.         Scanner s=new Scanner(System.in);
  6.         JPA01()
  7.         {
  8.                 try{
  9.                         o=s.nextInt();
  10.                 }catch(Exception e){
  11.                         o=0;
  12.                         s.next();
  13.                 }
  14.                 try{
  15.                         five=s.nextInt();
  16.                 }catch(Exception e){
  17.                         f=0;
  18.                         s.next();
  19.                 }
  20.                 try{
  21.                         t=s.nextInt();
  22.                 }catch(Exception e){
  23.                         t=0;
  24.                         s.next();
  25.                 }
  26.                 if(o<0)
  27.                         o=0;
  28.                 if(f<0)
  29.                         f=0;
  30.                 if(t<0)
  31.                         t=0;
  32.                 total=o+f*5+t*10;
  33.                 DecimalFormat d=new DecimalFormat("#,###");
  34.                 System.out.println(d.format(total));

  35.         }
  36.         public static void main(String[] args) {
  37.                 new JPA01();
  38.         }
  39. }
複製代碼

TOP

返回列表