现在的位置: 首页 > 综合 > 正文

poj3062

2016年09月26日 ⁄ 综合 ⁄ 共 198字 ⁄ 字号 评论关闭
//poj3062 不知道怎么有这种水题
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
    string a;
    getline(cin, a);
    while(!cin.eof())
    {
                  cout<<a<<endl;
                  getline(cin, a);              
    }
    //system("pause");
    return 0;
}

【上篇】
【下篇】

抱歉!评论已关闭.