竞赛
考级
题目分析 这道题呢,实际上就是让我们求出a是否大于b,实际上我们只需要制作一个判断就行了。 答案 至于函数的办法有意在跟我说,现在我懒得写了
ん贤
法兰西玫瑰
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; if(a>b) { cout<<"YES"; } else { cout<<"NO"; } return 0; }
chaizechen
一枚button
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) { cout<<"YES"; } else { cout<<"NO"; } return 0; }
章静远
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if (a>b){cout<<"YES";} else {cout<<"NO";} return 0; }
150****9200
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b)cout<<"YES"; else cout<<"NO"; return 0; }
sprunki
#include <iostream> using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); if(a>b) printf("YES\n"); else printf("NO\n"); return 0; }
Voldemort
神
####前言#### 简单。 ####代码部分#### ####总结部分#### 还是那三个字:好简单!
白夜7号
240637 刘晓彤
zsy
有事找大号
暴力出奇迹,结果TLE
YuQing1919
#include<bits/stdc++.h> using namespace std; int main(){ int a , b; cin >> a >> b; if(a > b) cout << "YES"; else cout << "NO"; return 0; }
DARK SPECTRE
逍遥骇好=&