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

C++入门 输出Hello World

chanra1n4年前 (2020-10-28)C++5462
#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发布,如需转载请注明出处。

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

分享给朋友:

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

一小时搞定C++_5

一小时搞定C++_5

讲到函数就可以讲讲局部变量和全局变量了,什么是局部变量呢?什么又是全局变量? #include <iostream>  using namespace std; int x,y,z;//x,y,z是全局变量  i...

变量作用域

变量作用域

#include<iostream> void print(); int main() { char a=0; for(a=0;a<20;a++) print(); return 0;  }  v...

Break和Continue的区别

Break和Continue的区别

#include<iostream>  using namespace std; int main() { int x=0; for(x=0;x<10;x++) { if(x==3) break;...

数据结构

数据结构

#include<iostream> using namespace std; struct books{ char name[10]; int num; float price; }book; int&nb...