- 问答
- 2014-12-26 23:10:21 @
#include<stdio.h> //是头文件的问题吗
int main(){
//freopen("zpi.in","r",stdin);
//freopen("zpi.out","w",stdout); 这两句可省略
int high[10],touch,ans=0;
for(int i=0;i<10;i++) scanf("%d ",&high[i]);
scanf("%d",&touch);
for(int i=0;i<10;i++){
if(high[i]<=touch+30){
ans+=1;
}
}
printf("%d",ans);
return 0;
}
2 条评论
-
twd2 LV 9 MOD @ 2014-12-27 19:48:59
编译错误?提示什么呀
-
2014-12-27 09:14:37@
头文件没问题啊
- 1