数据的输入
可以从键盘输入。关键字是cin
。语法是 cin >> 变量
#include<iostream>
#include<string>
using namespace std;
int main()
{
// 1.整型
int a = 0;
cout << "输入" << endl;
cin >> a;
cout << "a =" << a << endl;
// 2.浮点型
float b = 0.0f;
cout << "输入" << endl;
cin >> b;
cout << "b =" << b << endl;
// 3.字符型
char c = 'a';
cout << "输入" << endl;
cin >> c;
cout << "c =" << c << endl;
// 4.字符串型
string d = "a";
cout << "输入" << endl;
cin >> d;
cout << "d =" << d << endl;
// 5.布尔型
bool e = false;
cout << "输入" << endl;
cin >> e;
cout << "e =" << e << endl;
system("pause");
return 0;
}
这里和 py 是不同的!!!!
py 里面不需要在输入前给一个初始值,但是在 c++里面是需要的。输入的提示也是需要单独 cout,不可以像 py 一样直接在 input 中提示!!!
:-)