A481.*a+b>c题解:
2026-02-13 23:06:27
发布于:四川
0阅读
0回复
0点赞
*A481.a+b>c
官方!删题!
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(a+b>c){//直接判断
cout << "YES";
}else{
cout <<"NO";
}
return 0;
}

这里空空如也






有帮助,赞一个