65,210
社区成员
发帖
与我相关
我的任务
分享
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
char c;
c=cin.get();
if(c==' ')
cout <<"空格";
else if(c=='\n')
cout <<"回车";
else
cout <<"数字" <<c;
return 0;
}