官方题解|欢乐赛#37 T2
2025-01-08 14:34:12
发布于:浙江
2阅读
0回复
0点赞
T2
本题考查数位分离,只要利用循环求出数位之和,然后再判断一下奇偶即可。
#include <iostream>
using namespace std;
void solve(){
int n, sum = 0; cin >> n;
while(n){
sum += n % 10; n/=10;
}
if(sum&1) cout << "YES\n";
else cout << "NO\n";
}
int main(){
int t;cin>>t;
while(t --){
solve();
}
return 0;
}
这里空空如也
有帮助,赞一个