您的位置:首页 > 其它

POJ 3062 解题报告

2015-05-16 05:54 393 查看
不是题。。。

thestoryofsnow3062Accepted132K0MSC++521B
/*
ID: thestor1
LANG: C++
TASK: poj3062
*/
#include <iostream>
#include <fstream>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <limits>
#include <string>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <algorithm>
#include <cassert>

using namespace std;

const int MAXN = 1024;

int main()
{
char line[MAXN];
while (fgets(line, MAXN, stdin))
{
printf("%s", line);
}
printf("\n");

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: