- import java.text.*;
- import java.util.*;
- public class JPA06{
- public static void main(String[] args){
- Scanner s=new Scanner(System.in);
- int a[]={0,0,0};
- int total;
- for(int i=0;i<3;i++){
- try{
- a[i]=s.nextInt();
- if(a[i]<0){
- a[i]=0;
- }
- }catch(Exception e){
- a[i]=0;
- s.next();
- }
- }
- total=a[0]+a[1]*5+a[2]*10;
- s.close();
- DecimalFormat x=new DecimalFormat("#,###");
- System.out.print(x.format(total));
- }
- }
複製代碼 |