将输入输出数据都保存在文件中,就不用每次在控制台输入测试样例,在做题时能方便不少。加入语句:
#include <iostream> freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout);