介绍了五款在线编译、编译、运行的C++线上环境。并选择其中的 “在线GDB” 网站动手编写、运行第一个C++程序 “Hello World”,同时和线下IDE进行对比。
1. 课堂视频
打开浏览器,线上玩转C++
2. 在线C++编译环境对比
- onlinegdb : www.onlinegdb.com
- repit : replit.com
- programiz : www.programiz.com
- wandbox.org wandbox.org
- godbolt.org godbolt.org
本课使用 onlinegdb 。在线运行本课代码:在线运行 HelloWorld
名称 | 可调试 | 交互式输入 | 输出文件 | 独立控制台 | 绑定github | github存储 | 代码分享 | 支持第三库 |
---|---|---|---|---|---|---|---|---|
onlinegdb | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 否 |
replit | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 否 |
programiz | 否 | ✅ | ✅ | ✅ | 否 | 否 | 否 | 否 |
wandbox | 否 | 否 | 否 | 否 | 否 | 否 | 否 | ✅ |
godbolt | 否 | 否 | 否 | 否 | 否 | 否 | 否 | ✅ |
3. 代码
新手需要能默写的代码如下:
#include <iostream>using namespace std;int main()
{cout<<"Hello World" << endl;
}