目录
正确代码
#include <iostream>
#include <string>
using namespace std;
int main() {
string a[10] = {"ling", "yi", "er", "san", "si", "wu", "liu", "qi", "ba", "jiu"};
string N;
size_t j=0;
cin >> N;
if (N[0] == '-') { // 判断是否为负数
cout << "fu ";
N = N.substr(1); // 将负号去掉
}
if (N == "0") { // 判断是否为0
cout << "ling";
} else {
for (size_t i = N.length() - 1; i > 0; i--,j++) {
cout << a[N[j] - '0'] << " ";
}
cout << a[N[j] - '0'];
}
return 0;
}
测试点
小细节
1.for循环中的size_t,因为length函数的返回值为size_t类型。
2.for循环中遍历N时要用单独的j,而不是i。(本人就是折在这里了)
3.substr(start, length)
:返回从 start
开始,长度为 length
的子串。N
是一个 string
对象,它提供了 substr()
函数,用于截取字符串中的一部分。该函数的第一个参数表示截取子串的起始位置,第二个参数表示截取子串的长度。当第二个参数被省略时,默认截取从起始位置到字符串末尾的子串。