标签:
1 100 200 150 140 129 134 167 198 200 111 110
5
解题:
#include<stdio.h>//自己做的 已经AC
int main()
{
int N;
scanf("%d",&N);
while(N--)
{
int q,w,e,r,t,y,u,i,o,p,a,n;
int s=0;
scanf("%d %d %d %d %d %d %d %d %d %d",&q,&w,&e,&r,&t,&y,&u,&i,&o,&p);
scanf("%d",&n);
a=n+30;
if(a>=q)
s++;
if(a>=w)
s++;
if(a>=e)
s++;
if(a>=r)
s++;
if(a>=t)
s++;
if(a>=y)
s++;
if(a>=u)
s++;
if(a>=i)
s++;
if(a>=o)
s++;
if(a>=p)
s++;
printf("%d\n",s);
}
return 0;
}
#include <iostream> //最优解题程序
using namespace std;
int main()
{
int s,i,a[10],t,m;
cin>>s;
while(s--)
{
t=0;
for(i=0;i<10;i++)
cin>>a[i];
cin>>m;
for(i=0;i<10;i++)
if(a[i]<=m+30)t++;
cout<<t<<endl;
}
return 0;
}
标签:
原文地址:http://www.cnblogs.com/1san14/p/4278814.html