7-1 Say important words three times (5 points)

7-1 Say important words three times

topic

This super simple question has no input.

You only need to put this very important sentence-"I'm gonna WIN!"-Output three times in a row.

Note that each line occupies one line, except that the carriage return of each line cannot have any extra characters.

Code

#include<stdio.h>

int main(){
	printf("I'm gonna WIN!\n");
	printf("I'm gonna WIN!\n");
	printf("I'm gonna WIN!\n");
	return 0;	 
} 
Published 21 original articles · praised 0 · visits 39

Guess you like

Origin blog.csdn.net/weixin_47127378/article/details/105565083