问题标题: 酷町堂:4359 50wa

0
0
已解决
武瑞宸
武瑞宸
高级守护
高级守护
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
    int a,b,c,d,e,f;
    cin>>a>>b>>c>>d>>e>>f;
    if((d/a)==(e/b)==(f/c)){
        cout<<"Yes";
    }
    else
    cout<<"No";
    return 0;
}

 


0
已采纳
刘丹青
刘丹青
初级守护
初级守护

if(x/a==2&&y/b==2&&z/c==2){
        cout<<"Yes";
    }
    else
    cout<<"No";

刘丹青在2020-10-21 18:08:16追加了内容

if内部求采纳

0
杜智宸
杜智宸
中级光能
中级光能

x/a有可能不为2

 d=x/a;

 if(y/b==d&&z/c==d) cout << "Yes";

杜智宸在2020-10-20 18:33:53追加了内容

不好意思写成自己的了

0
我要回答