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