... void print_error(const string &s) { cout << "ERROR: " << s << endl; exit(1); } int read_n(FILE *infile) { int n; fscanf(infile, "%d", &n); return n; } ...
確定! 回上一頁