codeforces 677A-C语言解题报告

Posted DQ_CODING

tags:

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

677A题目网址

题目解析

1.输入n个数字,如果输入的数字比h大,就加2,如果小于等于h,就加1

举例:
输入:
3 7
4 5 14
输出:
4

代码

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
int main()
{ 
	int n=0,h=0,count=0;
	int num[1000]={0};
	scanf("%d %d",&n,&h);
	for(int i=0;i<n;i++)
	{
		scanf("%d",&num[i]);
		if(num[i]>h)
		{
			count+=2;
		}else
		{
			count+=1;
		}

	}
	printf("%d",count);

	getchar();
	system("pause");
	return 0;
}

以上是关于codeforces 677A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 133A-C语言解题报告

codeforces 1030A-C语言解题报告

codeforces 705A-C语言解题报告

codeforces 122A-C语言解题报告

codeforces 344A-C语言解题报告

codeforces 266A-C语言解题报告