Experiment 1-6 Output boxed text (5 points)

This question requires writing a program to output the specified text with a frame.

Input format:

No input for this question

Output format:

Output boxed text in the following format.

************
  Welcome
************

Code:

# include <stdio.h>

int main(){
    
    
    printf("************\n  Welcome\n************");
}

Submit screenshot:

Insert picture description here

Guess you like

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