tyt_ @ 2024-12-02 18:59:39
#include<bits/stdc++.h>
using namespace std;
int a[12],cnt;
int main(){
int sum=0;
for(int i=1;i<=11;i++) cin>>a[i];
for(int i=1;i<=10;i++){
if(a[i]<=a[11]+30) sum++;
}
cout<<sum;
}
by ChenKeKe2013 @ 2024-12-02 19:05:27
#include<bits/stdc++.h>
using namespace std;
int a[12],n;
int main(){
int sum=0;
for(int i=1;i<=10;i++) cin>>a[i];
cin>>n;
for(int i=1;i<=10;i++){
if(a[i]<=n+30) sum++;
}
cout<<sum;
}
这么写试试
by ChenKeKe2013 @ 2024-12-02 19:06:59
因为/n
,可能读到它了
by ChenKeKe2013 @ 2024-12-02 19:07:48
@tyt_ 对了,你cnt
是用来干嘛的
by tyt_ @ 2024-12-02 19:14:43
@ChenKeKe2013 我提交错代码了,我原代码是对的啊啊啊 cnt是上个代码的