leetcode -- 13罗马数字转整数

在这里插入图片描述
在这里插入图片描述

class Solution {
    public int romanToInt(String s) {
        //读取罗马数字字符串
        char[] ch = s.toCharArray();
        //转化后的数值
        int num = 0;
        //遍历每一个字符
        for(int i = 0; i < ch.length; i++){
            //判断六种特殊情况
            if(ch[i]=='I'&&i<ch.length-1){
                if(ch[i+1]=='V'){
                    //如果有这种特殊情况,直接累加
                    num+= 4;
                    //由于下一次的已经使用,因此需要往后跳一格
                    i++;
                    //结束本次循环
                    continue;
                }
                if(ch[i+1]=='X'){
                     num+= 9;
                    i++;
                    continue;
                }
            }
            if(ch[i]=='X'&&i<ch.length-1){
                if(ch[i+1]=='L'){
                    num+= 40;
                    i++;
                    continue;
                }
                if(ch[i+1]=='C'){
                    num+= 90;
                    i++;
                    continue;
                }
            }
            if(ch[i]=='C'&&i<ch.length-1){
                if(ch[i+1]=='D'){
                    num+= 400;
                    i++;
                    continue;
                }
                if(ch[i+1]=='M'){
                    num+= 900;
                    i++;
                    continue;
                }
            }
            if(ch[i]=='M'){
                num+=1000;
            }
            if(ch[i]=='D'){
                num+=500;
            }
            if(ch[i]=='C'){
                num+=100;
            }
            if(ch[i]=='L'){
                num+=50;
            }
            if(ch[i]=='X'){
                num+=10;
            }
            if(ch[i]=='V'){
                num+=5;
            }
            if(ch[i]=='I'){
                num+=1;
            }
        }
        return num;
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值