codeforces 705A-C语言解题报告
Posted DQ_CODING
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 705A-C语言解题报告相关的知识,希望对你有一定的参考价值。
题目解析
1.重点:结尾是it,中间使用that连接,所以使用for循环,奇数输出I hate,偶数输出I love,i!=n时,输出that
代码
#include<stdio.h>
#include<stdlib.h>
#define SIZE 100000
int main()
{
int n=0;
scanf("%d",&n);
if(n==1)
{
printf("I hate it");
}else
{
for(int i=1;i<=n;i++)
{
if(i%2!=0)
{
printf("I hate ");
}else
{
printf("I love ");
}
if(i!=n)
{
printf("that ");
}
}
printf("it");
}
getchar();
system("pause");
return 0;
}
以上是关于codeforces 705A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章