#include<iostream>
using namespace std;
int main(){
cout<<"Hello C++";
return 0;
}
输出:Hello C++
Hello C++
--------------------------------
Process exited after 1.112 seconds with return value 0
请按任意键继续. . .
解析:
#include<iostream>
C++的程序开头都要有这一行,“iostream”是输入输出流文件,作用是把文件的输入输出流包含进程序
常见错误:
示例:
#include<iostream>
using namespace std //错误1
int main(){
cout>>"Hello C++"; //错误2
return 0;
}
首先,错误1:
using namespace std
命名空间时 后边必须加分号,如上一行代码所示:
然后,错误2:
cout>>"Hello C++";
cout输出(代码)是cout<<"... ...",而并非cout>>"... ..."
将两个字符串连接在一起
在C++中,使用cout连续使用两次"<<"号可以将两个字符串连接在一起输出 例:
#include<iostream>
using namespace std;
int main(){
cout<<"Hello "<<"C++";
return 0;
}
输出结果:
Hello C++
--------------------------------
Process exited after 1.06 seconds with return value 0
请按任意键继续. . .