如何用VS2013编写我的第一个C++程序

2024-12-20 03:36:52
推荐回答(1个)
回答1:

#include
using namespace std;
int main() {
    cout<<"Hello World!";
    return 0;
}