Day1
- 檔名必須滿足與英文題目名字相同。
- 把檔案放在對應資料夾裡面。
- exe, in, out 檔案可刪可不刪。
- 提交上去的程式碼一定一定記得檔案 OI。
int main() {
freopen("xxx.in", "r", stdin);
freopen("xxx.out", "w", stdout);
...
}
Day1
int main() {
freopen("xxx.in", "r", stdin);
freopen("xxx.out", "w", stdout);
...
}