一、cin的使用
- 示例
#include <iostream>
int main(void)
{
using namespace std;
int carrots;
cout << "How many carrots do you have?" << endl;
cin >> carrots;// 输入流cin 中读取carrots并存储进carrots。
cout << "Here are two more.";
carrots = carrots + 2;
cout << "Now you have " << carrots << " carrots." << endl;
return 0;
}
运行结果:
How many carrots do you have?
7
Here are two more.Now you have 9 carrots.
二、类的简介
-
类描述了一种数据类型的全部属性,包括可执行操作。对象是根据这些类的具体实例化。
-
cout 是ostream的对象,cin是istream的对象。
-
如果要使用某个类库的类,只需要把类库包含即可。
2021年8月13日