- 陶陶摘苹果
- 2016-10-11 21:44:27 @
// input code here#include<iostream>
using namespace std;
int main(){
int high,final;
int apple[15];
for(int i=0;i<10;i++){
cin>>apple[i];
}
cin>>high;
high+=30;
for(int i=0;i<10;i++){
if(high>=apple[i]){
final++;
}
}
cout<<final<<endl;
return 0;
}
3 条评论
-
fcsb LV 6 @ 2016-10-13 19:53:43
你没救了
-
2016-10-11 21:45:45@
final没有初始化
-
2016-10-11 21:45:11@
一不小心把#include<iostream>给注释掉了
- 1