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






有帮助,赞一个