【MAC 上学习 C++】Day 25-2. 实验1-2 Welcome to You! (5 分)

实验1-2 Welcome to You! (5 分)

1. 题目摘自

https://pintia.cn/problem-sets/13/problems/253

2. 题目内容

本题要求编写程序,输出一个短句“Welcome to You!”。

输入格式:

本题目没有输入。

输出格式:

在一行中输出短句“Welcome to You!”。

3. 源码参考
#include

using namespace std;

int main()
{
    cout << "Welcome to You!" << endl;

    return 0;
}

你可能感兴趣的:(【MAC 上学习 C++】Day 25-2. 实验1-2 Welcome to You! (5 分))