0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:05:25 +00:00

fix: use constant instead of define

This commit is contained in:
Baoshuo Ren 2022-02-23 19:37:12 +08:00
parent 886c3ea0db
commit 358d5a5738
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -23,7 +23,7 @@
"",
"using std::cin;",
"using std::cout;",
"#define endl '\\n'",
"const char endl = '\\n';",
"",
"int main() {",
" std::ios::sync_with_stdio(false);",