在unbuntu下用vscode写一个hello,word,然后提交到华为云上
时间: 2024-03-05 21:54:39 浏览: 114
VC开发的简单的helloword
好的,下面是详细步骤:
1. 在Ubuntu上安装Visual Studio Code编辑器。
你可以在终端中输入以下命令进行安装:
```
sudo snap install --classic code
```
2. 在Visual Studio Code中创建一个名为“hello”的文件夹,并在其中创建一个名为“hello_world.cpp”的C++文件。
3. 在“hello_world.cpp”中输入以下代码:
```c++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, world!" << endl;
return 0;
}
```
4. 保存并退出文件。
5. 打开华为云开发者平台,创建一个新的代码仓库,并将该仓库克隆到本地。
6. 将“hello”文件夹复制到仓库目录下。
7. 在终端中进入仓库目录,并提交代码。
```bash
cd /path/to/repo
git add .
git commit -m "Add hello world program"
git push origin master
```
8. 等待代码上传完成,即可在华为云上查看您的代码。
希望这些步骤对您有所帮助。
阅读全文