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

C++入门 输出Hello World

chanra1n5年前 (2020-10-28)C++5823
#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://myfpga.cn/index.php/post/154.html

分享给朋友:

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

一小时搞定C++_8

一小时搞定C++_8

#include <iostream> using namespace std; int main() { if(1+1==2) { cout << "1+1=2"; }...

C++的类和对象

C++的类和对象

什么是类和对象?张三找了一个女朋友,她的女朋友就是他的对象。搞笑一下,打个比方,我们都是人类,人类这个类的一个成员(对象)。怎么创建类呢?#include <iostream> using namespace std; class fenshu...

数据类型及其占用空间

数据类型及其占用空间

#include<iostream> using namespace std; int main() { cout << "The size of int is&nb...

函数声明和使用

函数声明和使用

#include<iostream> using namespace std; int sum(int a,int b);//函数声明  int main() { cout <<&nb...

变量作用域

变量作用域

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