用c++写一个诗吟程序
时间: 2023-10-10 18:13:06 浏览: 123
当然可以!以下是一个简单的用C++编写的诗吟程序示例:
```c++
#include <iostream>
#include <string>
using namespace std;
void poemGenerator() {
string noun[] = {"moon", "sun", "rose", "cloud", "tree"};
string verb[] = {"shines", "rises", "blooms", "floats", "sways"};
string adjective[] = {"beautiful", "bright", "fragrant", "gentle", "majestic"};
for (int i = 0; i < 5; i++) {
cout << "The " << noun[i] << " " << verb[i] << " in the " << adjective[i] << " sky." << endl;
}
}
int main() {
cout << "--- Poem Generator ---" << endl;
poemGenerator();
return 0;
}
```
这个程序会生成一个简单的诗句,其中使用了名词、动词和形容词的列表。你可以根据需要扩展这些列表,使诗句更加丰富多样。运行程序后,它会输出五个诗句。这只是一个简单的示例,你可以根据自己的需求扩展和改进这个程序。希望能帮到你!
阅读全文