Experiment 1-7 What is a computer? (5 points)

This question requires writing a program, outputting a short sentence "What is a computer?".

Input format:

This question has not been entered.

Output format:

Output the short sentence "What is a computer?" on one line.

Code:

# include <stdio.h>

int main(){
    
    
    printf("What is a computer?\n");
    return 0;
}

Submit screenshot:

Insert picture description here

Guess you like

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