编写一个程序,从键盘输入一个个单词,并将单词存储到集合set之中。 如果该单词已存在时,输出提示语句“该单词已存在”。 不断输入单词,直到输入“exit”,代表输入结束。 最后,输出显示所有单词。 项目或源程序保存为Lab14_.cpp
时间: 2024-03-19 18:45:25 浏览: 55
Node.js+Vue脚手架环境搭建的方法步骤
好的,下面是Lab14_.cpp的代码实现:
```c++
#include <iostream>
#include <set>
#include <string>
using namespace std;
int main() {
set<string> words; // 定义一个字符串集合words
string word; // 定义一个字符串word
while (true) {
cout << "请输入一个单词(输入exit结束): ";
cin >> word;
if (word == "exit") { // 输入exit,结束循环
break;
}
if (words.count(word) > 0) { // 判断该单词是否已存在
cout << "该单词已存在!" << endl;
} else {
words.insert(word); // 将单词插入集合中
}
}
cout << "所有单词为:" << endl;
for (string w : words) { // 遍历集合中的单词
cout << w << endl;
}
return 0;
}
```
运行程序,输入单词并回车,如果输入的单词已经存在于集合中,则会提示“该单词已存在”,如果输入“exit”则会结束输入,最后程序会输出集合中的所有单词。
阅读全文