A486.*a!=b?题解:
2026-02-24 12:39:04
发布于:四川
0阅读
0回复
0点赞
A486.a!=b
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
if(a!=b){//判断a和b是否相等,若不相等输出YES,若相等输出NO
cout << "YES";
}else cout << "NO";
return 0;
}
这里空空如也






有帮助,赞一个