#include <Windows.h> #include <iostream> using namespace std; int main(int argc, char* argv[]) { cout << "Hello,World!" << endl; system("pause"); return 0; }
C/C++
原文:https://blog.51cto.com/14951081/2539882