无脑题解
2022-11-27 09:39:20
发布于:江苏
201阅读
0回复
0点赞
直接上手判断,看看陶陶身高加上30有没有大于苹果高度就行了
直接暴力
#include <iostream>
using namespace std;
int main(){
int q,w,e,r,t,y,u,i,o,p,a,s;
cin>>q>>w>>e>>r>>t>>y>>u>>i>>o>>p>>a;
if (a+30>=q) s++;
if (a+30>=w) s++;
if (a+30>=e) s++;
if (a+30>=r) s++;
if (a+30>=t) s++;
if (a+30>=y) s++;
if (a+30>=u) s++;
if (a+30>=i) s++;
if (a+30>=o) s++;
if (a+30>=p) s++;
cout<<s;
return 0;
}
我甚至不想拿这个代码发题解
全部评论 2
你不会数组吗?看这个
1小时前 来自 浙江
0真暴力
2024-04-20 来自 上海
0
有帮助,赞一个