codeforces 1030A-C语言解题报告
Posted DQ_CODING
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 1030A-C语言解题报告相关的知识,希望对你有一定的参考价值。
题目解析
1.输入一串数字,如果有1就输出HARD,否则输出EASY
2.勿忘&
代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int n=0,i=0;
int num=0;
int count=0;
scanf("%d",&n);
for(i;i<n;i++)
{
scanf("%d",&num);
if(num==1)
{
count=1;
break;
}
}
if(count)
{
printf("HARD");
}else
{
printf("EASY");
}
system("pause");
getchar();
return 0;
}
以上是关于codeforces 1030A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章