1.生成a.out可执行文件
g++ helloworld.cpp
2.生成helloworld.out文件
g++ helloworld.cpp -o helloworld
3.执行xxx.out文件
./xxx.out