A478.*a%b==c?题解:
2026-02-13 23:04:52
发布于:四川
0阅读
0回复
0点赞
*A478.a%b==c?
毫无技术含量!
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(a%b==c){
cout << "YES";
}else{
cout <<"NO";
}
return 0;
}
这里空空如也






有帮助,赞一个