Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想阅读用户的输入。
示例:如果用户输入233 245(考虑空间)。
233 245
我需要将它分配给变量
a=233; b=245;
我如何在 C++ 中做到这一点?
您可以执行以下操作:
#include <iostream> int main(int argc, char **argv) { int a,b; // Get values std::cin >> a >> b; // Print out values std::cout << a << ' ' << b << '\n'; }
这会将用户输入从标准输入读取到变量 a 和 b,然后将它们打印到标准输出