当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1002:1.1 Welcome to Program World

题目描述

编写程序,输入姓名,输出Welcome to Program World, 姓名!。

输入解释

输入一个字符串(姓名)

输出解释

屏幕上显示输出 Welcome to Program World, 姓名!

输入样例
ZhangSan
输出样例
Welcome to Program World, ZhangSan!
提示
姓名不仅支持中文姓名(拼音);还支持外国姓名 名字中可能包含空格,因此需要将一整行数据(姓名)直接读入输入流中,以下是C++代码:
#include <iostream>
using namespace std;
int main()
{
	string name;
	getline(cin, name);
	cout << "Welcome to Program World, " << name << "!" << endl;
	return 0; 
} 

该题目包含在题集 SSPU

题目来源 sspu

共提交 3121

通过率 18.39%
时间上限 内存上限
1000 MS 1280 MB