#include <iostream> // 基本输入输出头文件 #include <string> // 字符串头文件 using namespace std; // 申明命名空间 int main() // 程序入口 { cout << "Please enter your first name:"; string first_name, second_name; cin >> first_name; cout << "Please enter your second name:"; cin >> second_name; cout << "Hello, " << first_name << " " << second_name << " ... and goodbye!\n"; return 0; // 返回值0表示程序被顺利执行,其他值表示程序执行过程中出错。 // return 0;没有写也可以编译通过,但是编译器会发出警告 }