2 条题解
-
2钱语卉 LV 4 @ 2021-10-12 20:13:45
#include "iostream"
using namespace std;int main()
{
cout<< "HELLO WORD!"<<endl;
getchar();
return 0;
} -
12021-10-11 20:05:51@
#include <iostream>
using name std;
int main()
{
cou << "Hello World!";
return 0;
}
- 1