namespace std

This commit is contained in:
2024-10-11 11:54:28 +00:00
parent 9c9949721a
commit 58372e30a4

View File

@@ -1,8 +1,9 @@
#include <iostream> #include <iostream>
int main() using namespace std;
{ int main()
std::cout<<"Hello World"; {
cout<<"Hello World";
return 0;
return 0;
} }