ubuntu下用vscode运行一个c++程序

#include<iostream>
#include<unistd.h>
using namespace std;
int main()
{
    cout<<"hello,world!"<<endl;
    return 0;
    pause;
}

原文地址:https://www.cnblogs.com/yibeimingyue/p/13410771.html