1-2 Welcome to You!

来源:互联网 发布:手机辅助软件 编辑:程序博客网 时间:2024/06/14 02:39

1-2 Welcome to You!(5 分)
本题要求编写程序,输出一个短句“Welcome to You!”。
输入格式:

本题目没有输入。
输出格式:

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

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