#include
#include
using namespace std;
int main(int argc, char **argv[])
{
ifstream input;
ofstream output;
string tt;
input.open("11");
output.open("22", ofstream::app);
output << "==========\n";
if(!input) exit(0);
while(getline(input, tt, '\n')){
output << tt << "\n";
}
}
阅读(1252) | 评论(0) | 转发(0) |