当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。
编写程序,输入姓名,输出Welcome to Program World, 姓名!。
输入一个字符串(姓名)
屏幕上显示输出 Welcome to Program World, 姓名!
ZhangSan
Welcome to Program World, ZhangSan!
#include <iostream> using namespace std; int main() { string name; getline(cin, name); cout << "Welcome to Program World, " << name << "!" << endl; return 0; }
时间上限 | 内存上限 |
1000 MS | 1280 MB |