hello,大家好,今天我要来教大家c++,这是我第一次写文章,多多关照🫶
这个c++,我都是用的dev-c++,可以从这下载:https://bloodshed-dev-c.en.softonic.com/download
由于编译器不同 所以结果可能不同
输出hello world
首先是头文件,这很重要
初学者建议用标准库:
#include<iostream>
等熟悉了,万能库可以解决一些标准库解决不了的头文件(不建议用)
#include<bits/stdc++.h>
其次是引入std,可以理解为从编号iostream的工具箱里拿出std工具
using namespace std;
记住!从头文件往后(头文件除外)的代码后面都必须有结束符号
;
随后引入main主函数
int main(){
return 0;
}
其中,return 0;是返回值。
return 0;
现在就可以输出了
输入
cout<<"hello world";
cout是输出的意思
然后是字符串“&()&(…………”
一定要用英文状态输双引号,里面还可以输:
cout<<12+23;
cout<<56;
cout<<78<<"ghhhg"<<23+23;
当然,如果要换行,可以在后面加上 endl
cout<<hello<<endl
cout<<"we"<<endl<<"are"<<endl<<303<<300+3<<endl;
/*这是注释:
输出:
we
are
303303
*/
本节课结束了,最终代码:
#include<iostream>
using namespace std;
int main(){
cout<<"hello world"<<endl;
return 0;
}