本题要求编写程序,输出一个短句“Welcome to You!”。
本题目没有输入。
在一行中输出短句“Welcome to You!”。
# include <stdio.h> int main(){ printf("Welcome to You!"); return 0; }