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

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

输入格式:

本题目没有输入。

输出格式:

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

# include <stdio.h>

int main(){
    
    
    printf("Welcome to You!");
    return 0;
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43862765/article/details/114312197