当前位置:首页 > Software > C++ > 正文内容

C++入门 输出Hello World

chanra1n5年前 (2020-10-28)C++7050
#include <iostream>using namespace std;int main(){
    cout << "Hello, world!" << endl;    return 0;}

它等效于

#include <iostream>using namespace std;int main(){
    cout << "Hello, world! \n";    return 0;}


扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://world.myfpga.cn/index.php/post/154.html

分享给朋友:

“C++入门 输出Hello World” 的相关文章

C++ 基本结构

C++ 基本结构

    让我们一起来看这样一个一个简单的不能再简单的C++程序,int main() { return 0; }    首先什么是int main()呢,这是主函数的意思,可以说,我们的C++程序运行的就是这个i...