邓岑崟


私信TA

用户名:13546956770

访问量:504

签 名:

等  级
排  名 28443
经  验 535
参赛次数 1
文章发表 3
年  龄 13
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

模拟计算器
浏览:152
剪刀石头布
浏览:157

解题思路:利用if进行枚举,其余情况输出0

注意事项:



参考代码:

#include<bits/stdc++.h>

using namespace std;

int main(){

    int a,b;

    cin>>a>>b;

    if(a==0&&b==1){

    cout<<-1;

    }else if(a==1&&b==0){

    cout<<1;

    }else if(a==0&&b==2){

    cout<<1;

    }else if(a==2&&b==0){

    cout<<-1;

    }else if(a==1&&b==2){

    cout<<-1;

    }else if(a==2&&b==1){

    cout<<1;

    }else{

    cout<<0;

}


 

0.0分

4 人评分

  评论区

  • «
  • »