浙大《C實驗與指導》程式設計實驗1-2Welcome toYou!

2020-08-12 12:10:25

本題要求編寫程式,輸出一個短句「Welcome to You!」。
輸入格式:
本題目沒有輸入。
輸出格式:
在一行中輸出短句「Welcome to You!」。

#include<stdio.h>
int main()
{
    printf("Welcome to You!");
    return 0;
}