A476.a/b==c?题解:
2026-02-13 23:03:10
发布于:四川
0阅读
0回复
0点赞
A476.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;
}
这里空空如也






有帮助,赞一个