美文网首页算法
罗马数字转阿拉伯数字

罗马数字转阿拉伯数字

作者: 介和 | 来源:发表于2019-03-08 14:41 被阅读0次

    int charToInt(char ch)

    {

        switch(ch)

        {

            case 'I':return 1;

            case 'V':return 5;

            case 'X':return 10;

            case 'L':return 50;

            case 'C':return 100;

            case 'D':return 500;

            case 'M':return 1000;

            default:return 0;

        }   

    }

    int romanToInt(char* s)

    {

        int count = 0;

        int sum = 0; 

        if(s==NULL)

            return 0;

        while(s[count]!='\0')

        {

            if(charToInt(s[count])<charToInt(s[count+1]))

            {

                sum = sum + charToInt(s[count+1]) - charToInt(s[count]);

                count++;

            }

            else

                sum = sum + charToInt(s[count]);

            count++;

        }

        return sum;   

    }

    ---------------------

    作者:bingkuoluo

    来源:CSDN

    原文:https://blog.csdn.net/bingkuoluo/article/details/83241160

    版权声明:本文为博主原创文章,转载请附上博文链接!

    相关文章

      网友评论

        本文标题:罗马数字转阿拉伯数字

        本文链接:https://www.haomeiwen.com/subject/lmyrpqtx.html