实验1-2 Welcome to You! (5 分)
1. 题目摘自
https://pintia.cn/problem-sets/13/problems/253
2. 题目内容
本题要求编写程序,输出一个短句“Welcome to You!”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“Welcome to You!”。
3. 源码参考
#include<iostream>
using namespace std;
int main()
{
cout << "Welcome to You!" << endl;
return 0;
}