犹豫大树

文章
4
资源
0
加入时间
2年11月11天

用g++编译cpp文件

用g++编译cpp文件1、在learning/day1下,打开终端输入下列代码创建cpp文件touch helloworld.cpp2、在helloworld.cpp文件中,输入下面的c++代码:#include<iostream>using namespace std;int main(int argc,char** argv){ cout<<"hello world!!!"<<endl;