NYOJ50-爱摘苹果的小明

 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 int cmp(const void *a,const void *b)
 4 {
 5     return *(int *)a-*(int *)b;//升序 
 6 }
 7 int main()
 8 {
 9     int N,i,m,count;
10     int a[20];
11     scanf("%d",&N);
12     if(N<=0||N>=100)
13     return 0;
14     while(N--)
15     {
16         count=0;
17         for(i=0;i<10;i++)
18         {
19           scanf("%d",a+i);
20           if(a[i]>200||a[i]<100)
21           return 0;
22         }
23         scanf("%d",&m);
24         qsort(a,10,sizeof(a[0]),cmp);
25         for(i=0;i<10;i++)
26         if(m+30>=a[i])
27         count++;
28         printf("%d\n",count);
29     }
30     system("pause");
31     return 0;
32 }

posted on 2012-08-02 16:26  mycapple  阅读(278)  评论(0编辑  收藏  举报

导航