A.(c1=0&&c3>0)||(c1!=c4)

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<iostream>
 5 #define rep(i,l,r) for (int i=(l); i<=(r); i++)
 6 typedef long long ll;
 7 using namespace std;
 8 
 9 int c1,c2,c3,c4;
10 
11 int main(){
12     freopen("a.in","r",stdin);
13     freopen("a.out","w",stdout);
14     scanf("%d%d%d%d",&c1,&c2,&c3,&c4);
15     if ((!c1 && c3) || c1!=c4) puts("0"); else puts("1");
16     return 0;
17 }
A

相关文章:

  • 2021-09-18
  • 2021-07-21
  • 2021-09-04
  • 2021-06-26
  • 2021-05-30
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
猜你喜欢
  • 2021-07-18
  • 2022-12-23
  • 2020-07-14
  • 2021-10-15
  • 2021-06-18
  • 2021-05-28
相关资源
相似解决方案