解题思路:
直接把数字转换成对应的ascii字符就可以了。
注意事项:
要一次输出,不能边读边输出;
原题的输出样例里面应该是没有空格的,只是网页显示了空格;
参考的代码自己调试的话按ctrl+z,才能输入eof。
参考代码:
#include <iostream> using namespace std; int main() { int n; string str; while(cin >> n && n != NULL) { str += n; } cout << str << endl; return 0; }
0.0分
7 人评分