已解决 陈博文 新手守护 题目链接: 酷丁编程:4655 #include"bits/stdc++.h" using namespace std; int main(){ long long a,b; cin>>a>>b; if(a+b>100){ if(a>85&&b>85){ cout<<"YES"; }else{ cout<<"NO"; } } return 0; } 我的代码哪错了?