货币单位换算 华为OD真题 100

8ad650c729c95e7908d4ba3af66af587.png
ba2df40c75a597ec522d9b206d1776c2.png
31af35b6d3eb76cec8595e386fc5a346.png
d4abcee10bb14de3ce5ad12c2c045c78.png
7cd2c817599556a36aab294faffe67e2.png
841569be835ad826d1dce32c330f2922.png

public class Main{
 
    public static void main(String[] args) {
 
        Scanner sc = new Scanner(System.in);
 
        int N = sc.nextInt();
 
        int res = 0;
        sc.nextLine();
        for(int i=0;i<N;i++){
            res += getRes(sc.nextLine());
        }
 
        System.out.println(res);
 
    }
 
    public static double getRes(String str){
 
        String temp = "";
        double count = 0;
        for(int i=0; i<str.length(); i++){
            char c = str.charAt(i);
            if(Character.isDigit(c)){
                temp += c;
            }else {
                if(temp == ""){     //temp为空,说明已经计算过了,直接跳过。用来避免四位及以上字符的简写货币(cents)
                    continue;
                }
                count += huansuan( temp, c);
                i += 2;     //因为货币的简写至少为3位,所以可以跳两位,缩减时间
                temp = "";
            }
        }
 
        return count;
 
    }
 
    public static double huansuan(String numStr, char str){
 
        double count = 0;
        int num = Integer.valueOf(numStr);
        if(str == 'C'){
            count = num * 100;
        }else if(str == 'J'){
            count = (double) num * 10000 / 1825;
        }else if(str == 'H'){
            count = (double) num * 10000 / 123;
        }else if(str == 'E'){
            count = (double) num * 10000 / 14;
        }else if(str == 'G'){
            count = (double) num * 10000 / 12;
        }else if(str == 'f'){
            count = num * 1;
        }else if(str == 's'){
            count = (double) num * 100 / 1825;
        }else if(str == 'c'){
            count = (double) num * 100 / 123;
        }else if(str == 'e'){
            count = (double) num * 100 / 14;
        }else if(str == 'p'){
            count = (double) num * 100 / 12;
        }
 
        return count;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值