#include<fstream>
#include<iostream>
int main(void)
{
std::ifstream infile;
int a, b, c;
infile.open("temp.txt");
if (infile)
{
while (!infile.eof())
{
infile >> a >> b >> c;
std::cout << a << b << c << std::endl;
}
}
infile.close();
return 0;
}
转载请注明原文地址:https://ipadbbs.8miu.com/read-58788.html