Menu
×
×
正确
string fullName;
cout << "Type your full name: ";
@(7) (cin, fullName);
cout << "Your name is: " << fullName;
string fullName;
cout << "Type your full name: ";
getline (cin, fullName);
cout << "Your name is: " << fullName;
不正确
点击 此处 重试 正确
下一题 ❯string fullName; cout << "Type your full name: ";w3exercise_input_no_0(cin, fullName); cout << "Your name is: " << fullName; |