#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string line;
while (getline(cin, line)){
if (!line.empty())
cout << line << endl;
}
return 0;
}
#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string line;
while (getline(cin, line)){
if (line.size() > 80){
cout << line << endl;
}
}
return 0;
}
实际上,第一段代码在控制台看不出效果。