c++表白
时间: 2023-07-01 11:20:01 浏览: 204
C语言表白_C++表白_C++_
5星 · 资源好评率100%
好的,以下是一个简单的 C++ 表白程序的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string name;
cout << "请输入你喜欢的人的名字:";
getline(cin, name);
cout << endl;
cout << "==========" << endl;
cout << " Dear " << name << endl;
cout << endl;
cout << " 我爱你!" << endl;
cout << endl;
cout << " 你愿意做我女朋友吗?" << endl;
cout << endl;
cout << " From: 你的名字" << endl;
cout << "==========" << endl;
return 0;
}
```
运行该程序后,会提示用户输入喜欢的人的名字,然后输出一段简单的表白文字,最后显示出署名为“你的名字”的表白信息。
阅读全文