文章目录
📚在Linux(Ubuntu)中使用终端编译
🐇.cpp程序编译
-
创建及浏览文件 :新建test1文件夹,创建hello.cpp程序,并浏览文件夹。
-
vim打开文件 :修改内容。
:wq
保存并退出。cpp#include<stdio.h> int main() { printf("Hello world !\n"); return 0; }
-
运行.cpp程序 :
gcc -o hello hello.cpp
,编译完成后可以看到在和hello.cpp相同目录下有一个hello的可执行文件。然后在当前路径下运行编译后的可执行文件:./hello
🐇.py程序编译
- 创建py文件
- 编译运行 :
python3 hello1.py
🐇查看Python、C++编程环境
📚vscode安装
-
在应用商店搜索后直接install
-
安装对应的插件即可编译运行