0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-11 20:31:58 +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::cin;",
"using std::cout;", "using std::cout;",
"#define endl '\\n'", "const char endl = '\\n';",
"", "",
"int main() {", "int main() {",
" std::ios::sync_with_stdio(false);", " std::ios::sync_with_stdio(false);",