Skip to content

imalyd

imalyd的博客

搜索

2025年五月
一 二 三 四 五 六 日
« 12月    
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

  • C++ Hello world

文章归档

  • 2022年十二月
  • VerySource首页
  • 技术论坛
  • 博客
  • 在线工具
  • 在线手册
  • 登录
  • 注册

分类:C/C++

C++ Hello world

以下是C++版本的Hello world:

#include<iostream>

int main(){

    std::cout<<“Hello world!”<<std::endl;

    return 0;

}

本文为原创文章,转载请注明出处!

Posted on 2022-12-32022-12-3Categories C/C++Tags c++, 入门C++ Hello world有1条评论
imalyd | host by VerySource Blog | 作者:imalyd