C++(输入输出语句)

向计算机输入数据

当缓冲区为空时,程序才会暂停,让用户输入数据。

输入回车后,数据全部送到输入缓冲区。

#include

#include

int main(void){

       char girlType;

       int salary;

       float height;

      

       std::cout << "请输入您的理想类型:\n A:贤惠型 \n B:泼辣新 \n C: 文艺型 \n D:运动型" << std::endl;

       std::cin >> girlType;

      

       std::cout << "请输入您的月收入:" << std::endl;

       std::cin >> salary;

      

       std::cout << "请输入您的身高:[单位-米]" << std::endl;

       std::cin >> height;

      

       std::cout << "您的理想类型是: " << girlType << std::endl;

       std::cout << "您的月收入是: " << salary << "元" << std::endl;

       std::cout << "您的身高是: " << height << "米" << std::endl;

       system("pause");

       return 0;

}

小结:

对于char, int, float等基本数据类型, 直接使用std::cin >> 输入即可.

特别注意:

输出使用 std::cout <<

输入使用 std::cin >>

记忆诀窍:

输入, 需要一个很”尖”的 >> 才能实现插入.

你可能感兴趣的:(C++,c++,蓝桥杯,servlet)