您好!根据您的要求,我将为您解答这个问题。
首先,让我们来解释一下问题中涉及到的一些概念和技术。
接下来,让我们来解答这个问题。
#include <iostream>
#include <vector>
#include <string>
int main() {
std::vector<std::string> studentList;
std::string studentName;
std::string userInput;
do {
std::cout << "请输入学生姓名(输入NO结束):";
std::cin >> userInput;
if (userInput != "NO") {
studentList.push_back(userInput);
}
} while (userInput != "NO");
std::cout << "学生列表:" << std::endl;
for (const auto& student : studentList) {
std::cout << student << std::endl;
}
return 0;
}
上述代码是一个示例,实现了一个YES/NO循环来输入使用vector<string>的学生列表,并显示该列表,直到用户选择输入学生姓名为止。
代码逻辑如下:
studentList
,用于存储学生姓名。studentName
,用于存储用户输入的学生姓名。userInput
,用于存储用户输入的YES/NO选择。userInput
中。userInput
不等于 "NO",则将学生姓名添加到 studentList
中。这样,就实现了一个运行YES/NO循环来输入使用vector<string>的学生列表,并显示该列表的程序。
希望这个答案能够满足您的要求。如果您有任何其他问题,请随时提问!
领取专属 10元无门槛券
手把手带您无忧上云