C++ 中的输入和输出
C语言中的输入输出在c++中都可以使用,在c++程序中cout (输出),cin(输入)、printf,scanf混合使用,各有优劣。
cout :标准输出(控制台) cin:标准输出(键盘)
在程序中使用cout 和cin 必须包含<iosteam>头文件以及std 标准命名空间。
举个例子理解c++如何实现输入输出。
输出:
#include<iostream>
using namespace std;//标准命名空间
int main()
{
cout << "hello" << endl;//endl相当于从语言中的“\n”.
return 0;
}
输入:
#include<iostream>
using namespace std;
int main()
{
int a;//c++中的输入输出可以一行连续输出。输入
double b;
char c;
cin >> a;
cin >> b >> c;
cout << a << endl;
cout << b <<" "<< endl;//cout可以自动识别类型,控制输出格式
return 0;
}
一般C++中cout cin printf scanf 混合使用。