Experiment 1-2 Welcome to You! (5 points)

This question requires writing a program to output a short sentence "Welcome to You!".

Input format:

This question has not been entered.

Output format:

Output the short sentence "Welcome to You!" on one line.

# include <stdio.h>

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

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_43862765/article/details/114312197