- 问答
关于命名空间的疑问
- 2024-3-5 20:27:32 @
问问为什么一可以但二不行
#include <bits/stdc++.h>
int main()
{
std::cout << "Hello,World!" ;
return 0;
}
#include
int main()
{
std::cout << "Hello,World!" << endl;
return 0;
}
1 comments
-
Scenery LV 6 @ 2024-3-11 12:38:50
endl前面也要写std::
- 1