用c++编写一个代码,输出问候:Hello!What‘s your name?然后输入名字后输出欢迎信息
时间: 2024-10-04 10:03:13 浏览: 39
Go语言 Helloworld 协程体验 变量类型
当然可以,下面是一个简单的C++程序,它会提示用户输入姓名,并输出相应的问候和欢迎信息:
```cpp
#include <iostream>
using namespace std;
int main() {
// 输出问候语
cout << "Hello! What's your name?" << endl;
// 接收用户的输入
string userName;
getline(cin, userName); // 使用getline避免换行符影响
// 欢迎信息并包含用户名
cout << "Welcome, " << userName << "! Nice to meet you." << endl;
return 0;
}
```
在这个程序中,`getline(cin, userName)`用于读取用户的完整输入,包括空格和换行符。运行此程序,你会看到类似这样的交互:
```
Hello! What's your name?
Enter your name: Alice
Welcome, Alice! Nice to meet you.
```
阅读全文