- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class JPA01 {
- int one,five,ten,total=0;
- Scanner sc=new Scanner(System.in);
- JPA01()
- {
- try{
- one=sc.nextInt();
- }catch(Exception e){
- one=0;
- sc.next();
- }
- try{
- five=sc.nextInt();
- }catch(Exception e){
- five=0;
- sc.next();
- }
- try{
- ten=sc.nextInt();
- }catch(Exception e){
- ten=0;
- sc.next();
- }
- if(one<0)
- one=0;
- if(five<0)
- five=0;
- if(ten<0)
- ten=0;
- total=one+five*5+ten*10;
- DecimalFormat d=new DecimalFormat("#,###");
- System.out.println(d.format(total));
- }
- public static void main(String[] args) {
- new JPA01();
- }
- }
複製代碼 |