Problem C: 二进制运算(3)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:315 Solved:203

Description

求下列运算的二进制结果 (8位二进制,不足补0, 例如二进制结果为110,则输出00000110)
 (1) 8 ^ 8
 (2) 10 ^ 9

Output

#include<iostream>
using namespace std;
int main() {
cout << "答案一" << endl;
cout << "答案二" << endl;
return 0;
}

Sample Input Copy


Sample Output Copy