705A

Posted ozxics

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了705A相关的知识,希望对你有一定的参考价值。

#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的主要内容,如果未能解决你的问题,请参考以下文章