#include <iostream>//标准输入输出流
using namespace std;//打开命名空间
int main()//主函数入口
{
//endl 结束换行
cout << "hello world" << endl;
system("pause");//阻塞
return EXIT_SUCCESS;//成功离开
}
C++基础学习DAY1-01 Hello World
最新推荐文章于 2026-02-03 17:32:57 发布
467

被折叠的 条评论
为什么被折叠?



