lymboy


私信TA

用户名:lymboy

访问量:17645

签 名:

等  级
排  名 815
经  验 3525
参赛次数 1
文章发表 30
年  龄 0
在职情况 学生
学  校 河南理工大学
专  业

  自我简介:

#include <iostream>
#include <string>
#include <cstdio>

using std::cin;
using std::cout;
using std::endl;
using std::string;

int main(void)
{
	int N;
	string str;

	cin >> N;
	getchar();
	while (N-- && getline(cin, str))
	{
		cout << str << endl << endl;
	}
	while (cin >> str)
	{
		cout << str << endl << endl;
	}

	return 0;
}


 

0.0分

0 人评分

  评论区