标签: c++ input
我需要使用以下格式输入输入:
25400 你好世界
,然后将它们分配给单独的变量(Hello World在一个字符串变量中) 在我的代码中,仅当我在同一行上输入输入时,它才有效:
int a,b; string input; cin>>a>>b; getline(cin, input);
我尝试使用循环和scanf,但它们对我没有用。