题解 | #进制转换# C++解法

进制转换

http://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6

#include<iostream>
#include<string>
#include<cmath>
using namespace std;
 int main()
 {
     string str;
     while(cin>>str)
     {
         int bit=0;
         int ans =0;
         for(int i=str.size()-1;i>1;i--)
         {
             if(str[i]>='0'&&str[i]<='9')
                 ans+=(str[i]-'0')*pow(16,bit++);
             else if(str[i]>='A'&&str[i]<='F')
                 ans+=(str[i]-'A'+10)*pow(16,bit++);
         }
         cout<<ans<<endl;
     }
     return 0;
 }
全部评论

相关推荐

求offer的大角牛:简历写的第一乱,没有突出重点,第二项目太多太杂看不出来有啥核心技术,第三自我评价太多了,第四获得的荣誉没啥含金量,可以不写,反正问题不少
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务