- import java.util.*;
- import java.text.*;
- public class JPA01 {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int a=0, b=0, c=0, avg;
- 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();
- }
- avg=(a+b+c);
- DecimalFormat d=new DecimalFormat("#,###");
- System.out.print(d.format(avg));
- }
- }
複製代碼 |