c语言-重要的话说三遍

7-1 重要的话说三遍 (5 分)

这道超级简单的题目没有任何输入。

你只需要把这句很重要的话 —— “I'm gonna WIN!”——连续输出三遍就可以了。

注意每遍占一行,除了每行的回车不能有任何多余字符。

程序:

#include<stdio.h>
int main()
{	
	int i;
	for( i=0; i<3; i++)
		printf("I'm gonna WIN!\n");
	return 0;
 } 

猜你喜欢

转载自blog.csdn.net/suxiaorui/article/details/88322663
今日推荐