7-3 Say important things three times (5 points)

There is no input for this super simple question.
You only need to output this very important sentence-"I'm gonna WIN!"-output three times in a row.
Note that each pass occupies one line, except for the carriage return of each line, there can be no extra characters.

#include<stdio.h>
int main(void)
{
    
    
 printf("I'm gonna WIN!\nI'm gonna WIN!\nI'm gonna WIN!\n");
 return 0;
}

Guess you like

Origin blog.csdn.net/weixin_45814538/article/details/108877758