1. 编写helloworld
#includeusing namespace std;int main(){ cout<<"hello world"<
2.编译
$ g++ hello.cpp -o hello
$./hello
一般linux默认自带gcc,用gcc -v 查看
本文共 209 字,大约阅读时间需要 1 分钟。
1. 编写helloworld
#includeusing namespace std;int main(){ cout<<"hello world"<
2.编译
$ g++ hello.cpp -o hello
$./hello
一般linux默认自带gcc,用gcc -v 查看
转载于:https://www.cnblogs.com/Baronboy/p/8026864.html