还是先把成品代码发上来
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
string dream;
string name;
cout << "Please write down your name." << endl;
cin >> name;
cout << "Hello" <<" "<< name <<"."<< endl;
system("Pause");
cout << "What's your dream?" << endl;
cin >> dream;
cout << "Hope you can do it." << endl;
return 0;
}
首先还是头文件
然后先定义两个变量,一会用于让用户输入
对用户进行提示,获取第一个变量的输入
暂停程序(也可以不暂停)
最后获取并输出第二个变量
如果还有其他问题或者互动选项,可以继续敲代码(累了,不想敲太长的了。。。。)