码迷,mamicode.com
首页 > 其他好文 > 详细

705A

时间:2019-07-17 09:32:22      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:printf   else   scan   cpp   for   turn   scanf   love   return   

#include <stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	int i;
	for(i=1; i<=n; ++i)
	{
		if(i!=1)
			printf(" that ");
		if(i%2!=0)
			printf("I hate");
		else
			printf("I love");
	}
	printf(" it\n");
	return 0;
}

  

705A

标签:printf   else   scan   cpp   for   turn   scanf   love   return   

原文地址:https://www.cnblogs.com/ozxics/p/11198787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!