CodeLibrary/02_vscode_Cplus_Project_20240420/20240420/main.cpp

8 lines
128 B
C++
Raw Permalink Normal View History

2024-04-20 18:11:21 +08:00
#include <iostream>
using namespace std;
int main (){
cout << "Hello, World!" << endl;
system("pause");
return 0;
}