- import java.util.*;
- import java.text.*;
- public class Ch01 {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int a=0,b=0,c=0;
- try{
- a=s.nextInt();
- if(a<0)
- a=0;
- }catch(Exception e){
- s.next();
- }
- try{
- b=(s.nextInt()*5);
- if(b<0)
- b=0;
- }catch(Exception e){
- s.next();
- }
- try{
- c=(s.nextInt()*10);
- if(c<0)
- c=0;
- }catch(Exception e){
- s.next();
- }
- int x;
- x=(a+b+c);
- DecimalFormat formatter = new DecimalFormat("#,###");
- System.out.println(formatter.format(x));
- }
- }
複製代碼 |