void main() { int x, y; ifstream ifs("data.txt"); assert(ifs); while (!ifs.eof()) { ifs >> x >> y; cout << x << " " << y << endl; } ...
確定! 回上一頁