1 Star 0 Fork 1

dhs347/cppstudy

forked from Huoty/cppstudy 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
hello.cpp 444 Bytes
Copy Edit Raw Blame History
Huoty authored 2024-12-08 23:34 +08:00 . update at 20241208233432
/*
* Copyright (c) Huoty, All rights reserved
* Author: Huoty <sudohuoty@163.com>
* CreateTime: 2021-10-21 19:50:25
*
*/
/*
* 第一个 C++ 程序
*/
// 引入头文件
#include <iostream>
// 引入名字空间
using namespace std;
// 程序的入口函数
int main(void)
{
// 向标准流输出数据
cout << "Hello World" << endl;
// 返回一个 int 类型的数据,用于表示程序的退出状态
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dhs347/cppstudy.git
git@gitee.com:dhs347/cppstudy.git
dhs347
cppstudy
cppstudy
master

Search