0
已采纳
梁彦博
初级光能
初级光能
char a=getch();
if (a=='1') cout<<'1';
else if (a=='2') cout<<'1';
else if (a=='3') cout<<'3';
else if (a=='4') cout<<'4';
头文件
#include<conio.h>
1
赵逸凡
初级启示者
初级启示者
李颂宥,张睿杰的程序编译器会报错
因为while后面没加括号,他写的因是while(1){int k;cin>>k;cout<<k<<endl;}
而且他的思想不是你说的先连续输入,再连续输出。
请你说下你的思想
0
李汉魁
中级光能
中级光能
把这些数字当作字符串处理,先输入字符串,再输出字符串
定义字符串(string) a; //注意要用到#include <string>头文件哦!
输入(gets) a; //注意要用到#include <cstdio>头文件哦!
输出(puts) a; //注意要用到#include <cstdio>头文件哦!
0
0
0
0
0
0