一次性AC,用时9分钟。一开始不会输入!
#include<iostream>
using namespace std;
const int N=100+1;
char a[N];
void print(char a[])
{
int i=0;
while(a[i]!=0)
{
cout << a[i];
i++;
}
}
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
cin.getline(a,101);
print(a);
// fclose(stdin);
// fclose(stdout);
return 0;
}