#include <string> #include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; cout << a + b << '\0' << "????" << endl; return 0; }
这段代码,在luogu是WA的。
但是在Acwing是AC的。
本机上跑也不会输出“????”
请问这是为何?
\0不是只是一个空串吗,为什么会这样。