S2_输入数据基本
Posted lvcunda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了S2_输入数据基本相关的知识,希望对你有一定的参考价值。
注意:
当缓冲区为空时,程序才会停止,让用户输入数据
输入回车后,数据全部送到输入缓冲区
1 #include<iostream> 2 #include<Windows.h> 3 int main(void){ 4 char girlType; 5 int salary; 6 float height; 7 8 std::cout << "请输入您的理想类型: A:贤惠型 B:泼辣新 C: 文艺型 D:运动型" << std::endl; 9 std::cin >> girlType; 10 11 std::cout << "请输入您的月收入:" << std::endl; 12 std::cin >> salary; 13 14 std::cout << "请输入您的身高:[单位-米]" << std::endl; 15 std::cin >> height; 16 17 std::cout << "您的理想类型是: " << girlType << std::endl; 18 std::cout << "您的月收入是: " << salary << "元" << std::endl; 19 std::cout << "您的身高是: " << height << "米" << std::endl; 20 21 system("pause"); 22 return 0; 23 }
执行结果
以上是关于S2_输入数据基本的主要内容,如果未能解决你的问题,请参考以下文章
[AndroidStudio]_[初级]_[配置自动完成的代码片段]