Experiment 1-1 Hello World! (5 points)

This question requires writing a program that outputs a short sentence "Hello World!".

Input format:

This question has not been entered.

Output format:

Output the short sentence "Hello World!" on one line.

# include <stdio.h>

int main(){
    
    
    printf("Hello World!");
    return 0;
}

Guess you like

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