标签:style http color os io ar for 数据 div
1 100 200 150 140 129 134 167 198 200 111 110
5
参考代码:
#include<stdio.h> int main() { int n,i,x,a[10]; scanf("%d",&n); while(n--) { for(i=0;i<10;++i) scanf("%d",&a[i]); scanf("%d",&x); x+=30; int k=0; for(i=0;i<10;++i) if(a[i]<=x) k++; printf("%d\n",k); } return 0; }
标签:style http color os io ar for 数据 div
原文地址:http://blog.csdn.net/qq_18062811/article/details/39053981