解题思路:
注意事项:
参考代码:
#include<iostream> #include<string> using namespace std; int main() { string str; int jud = 0; while (cin >> str) { int j = 1; jud = 0; for (int i = 0; i < str.size() - 1; i++) { if (i == 0 || (i > 1 && i < 5) || (i > 5 && i < 11)) jud = jud + (j++) * (str[i] - '0'); } int temp = jud % 11; if (temp == 10) { char temp = 'X'; if (temp == str[str.size() - 1]) cout << "Right" << endl; else cout << str.substr(0, str.size() - 1) << temp << endl; } else { if (temp == str[str.size() - 1] - '0') cout << "Right" << endl; else cout << str.substr(0, str.size() - 1) << temp << endl; } } return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:639 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:634 |
WU-链表数据求和操作 (C++代码)浏览:1382 |
C语言程序设计教程(第三版)课后习题6.3 (C++代码)浏览:1067 |
校门外的树 (C语言代码)浏览:733 |
蚂蚁感冒 (C语言代码)浏览:816 |
敲七 (C++代码)浏览:1119 |
找出最长的字符串来 (C语言代码)浏览:1840 |
1197求助浏览:667 |
陶陶摘苹果2 (C++代码)浏览:578 |