题解 | #进制转换# 经典问题-转化为10进制
进制转换
https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6
#include <iostream> #include <stack> using namespace std; int main() { string s; getline(cin,s); int a = (s.find('x') == string::npos) ? s.find('X') : s.find('x'); int n = s.size(); int res = 0; for(int i=a+1; i<n; i++){ res *= 16; if(s[i] >= 'A' && s[i] <= 'F'){ res += (s[i] - 'A') + 10; }else{ res += s[i] - '0'; } } cout << res <<endl; return 0; } // 64 位输出请用 printf("%lld")
参考别人的思路,注意点有:
1、对于包换空格的字符串读取的方式。
2、对于寻找字符串中第一个出现的字符/字符串的代码实现。
3、对与x进制中各种取值的处理情况的代码实现,即“基于比较的思路去实现”。
4、对与“进位”功能的实现。