解题思路:
注意事项:
参考代码:
#include <iostream>
#include <cstring>
#include<string>
#include<stdio.h>
using namespace std;
int main()
{
int n;
cin>>n;
getchar();
char name[1000];
while(n--)
{
gets(name);
puts(name);
cout<<endl;
}
while(scanf("%s",name)!=EOF)
{
puts(name);
cout<<endl;
}
}
0.0分
0 人评分
点我有惊喜!你懂得!浏览:2754 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:774 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:1114 |
a+b浏览:452 |
蚂蚁感冒 (C语言代码)浏览:1408 |
简单的a+b (C语言代码)浏览:1024 |
C二级辅导-计负均正 (C语言代码)浏览:523 |