#include <iostream>
using namespace std;
int main(int argc, const char * argv[])
{
//cin接收键盘输入
int age;
double height;
char name[10];
// cout 在控制台输出一些信息
// 相当于c语言的printf函数
// 相当于oc 中的NSLog
cout << "请输入年龄";
cin >> age;
// std::cout
// cout这个对象是定义在std 命名空间中的
cout << "请输入身高";
cin >> height;
cout << "请输入姓名\n";
// cin >> name;
cin.get(name,10);
// endl : end line
// 运算符重裁
cout << "my age is " << age << ",height is " << height << ",name is " << name << endl ;
return 0;
}