我已经编写了一个代码,用于在 C++ 中从用户那里获取字符串。这是代码
#include<iostream>
#include<string>
using namespace std;
string input;
void enterstring()
{
cout<<"\nEnter input: ";
getline(cin,input);
}
void displaystring()
{
cout<<"\nyour string is "<<input<<endl;
}
{
int main()
{
int choice=0;
while(choice!=3)
{
cout<<"Enter choice: "<<;
cin>>choice;
switch(choice)
{
case 1: enterstring();
break;
case 2: displaystring();
break;
case 3: cout<<"\nQuit";
break;
default: cout<<"\ninvalid choice try again";
break;
}
return 0;
}
上述代码的输出:
Enter choice: 1
Enter input:
Enter choice:
输入部分被跳过我不知道为什么问题出在哪里。逻辑错了,语法有什么问题。当我在不使用 while 循环等的情况下调用函数时,它工作正常,但在这种情况下它不起作用。帮我。