int i, j; std::ifstream fin("input.txt"); fin >> i >> j; std::cout << "(i,j) = (" << i << "," << j << ")" << std::endl; // => (1,2).
確定! 回上一頁