竞赛
考级
#include <iostream> using namespace std; int main(){ int a,s,d; cin >> a >> s >> d; if (a * s == d) cout << "YES"; else cout << "NO"; return 0; }
133****1302
#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; }
行星快递员
毛奕程
复仇者_Y38╋════━➢
zsy
有事找大号
YuQing1919
#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; }
DARK SPECTRE
#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"; } }
菜
逍遥骇好=&
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*b==c){ cout<<"YES"; }else cout<<"NO"; return 0; }
135****5269
共31条
提交答案之后,这里将显示提交结果~