MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / main

Function main

codes/cpp/Code_2_02_2.cpp:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int main() {
5 int a, b;
6 cin >> a >> b; // a �� b ����͂���
7 cout << (a & b) << endl; // a AND b �̒l���o�͂���
8 cout << (a | b) << endl; // a OR b �̒l���o�͂���
9 cout << (a ^ b) << endl; // a XOR b �̒l���o�͂���
10 return 0;
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected