庸才


私信TA

用户名:1497367496

访问量:13904

签 名:

1497367496

等  级
排  名 438
经  验 4865
参赛次数 1
文章发表 24
年  龄 0
在职情况 学生
学  校
专  业 物联网工程

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>
#include<math.h>
int fun(int* a,int* b, int n)
{
    int i,j,t=0;
    for(i=0;i<n;i++)
    {
        for(j=0;j<6;j++)
        {
            if(a[i]>=b[j])
            {
             t++;
             a[i]-=b[j];
             j-=1;
            }
        }
    }
    return t;
}
int main()
{
    int n,i,j,temp,t=0,a[100],b[6]={100,50,10,5,2,1};
    while(scanf("%d",&n),n!=0)
    {
    for(i=0;i<n;i++)
        scanf("%d",&a[i]);

    printf("%d",fun(a,b,n));
    }
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »