读入四个整数 0 0 0 或者 1 1 1,作为如图所示的电路图的输入。请输出按照电路图运算后的结果。
感谢@PC_DOS 提供的翻译
The input consists of four lines, each line containing a single digit 0 or 1.
Output a single digit, 0 or 1.
0
1
1
0
0
#include<bits/stdc++.h>
using namespace std;
int i1,i2,i3,i4;
int main()
{
cin>>i1>>i2>>i3>>i4;
cout<<(((i1^i2)&(i3|i4))^((i2&i3)|(i1^i4)));
return 0;
}