你已经知道了cout
用于输出(打印)值。现在我们将使用cin
获取用户输入。
cin
是一个预定义变量,它使用提取运算符 (>>
)。
在下面的示例中,用户可以输入一个数字,该数字存储在变量中x
。然后我们打印的值x
:
int x;
cout << "Type a number: "; // Type a number and press enter
cin >> x; // Get user input from the keyboard
cout << "Your number is: " << x; // Display the input value
运行示例 »
cout
发音为"see-out"。用于输出,并使用插入运算符 (<<
)
cin
发音为"see-in"。用于输入,并使用提取运算符 (>>
)
在此示例中,用户必须输入两个数字。然后我们通过计算(相加)两个数字来打印总和:
int x, y;
int sum;
cout << "Type a number: ";
cin >> x;
cout << "Type another number: ";
cin >> y;
sum = x + y;
cout << "Sum is: " << sum;
运行示例 »
就这样吧!您刚刚构建了一个基本计算器!
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!