竞赛
考级
题目分析 这道题呢,实际上就是让我们求出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; }
章静远
Aurora.
黑客_天之神_ZDZL_zsy
有事找大号
暴力出奇迹,结果TLE
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b)cout<<"YES"; else cout<<"NO"; return 0; }
sprunki
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
逍遥骇好=&
#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