65,210
社区成员
发帖
与我相关
我的任务
分享
#include <iostream>
using namespace std;
int main()
{
cout << "hello,world!" << endl;
system("pause");
cout << "hello,world!" << endl;
return 0;
}
#include <iostream>
using std::cout;
using std::endl;
int main() {
cout<<"Hello, World!"<<endl;
return EXIT_SUCCESS;
}