Problem B: 二进制运算(2)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:433
Solved:204
Description
求下列运算的二进制结果 (8位二进制,不足补0, 例如二进制结果为110,则输出00000110)
(1) 15 | 7
(2) 36 | 12
(1) 15 | 7
(2) 36 | 12
Output
答案输出格式如下:
#include<iostream>using namespace std;
int main() {
cout << "答案一" << endl;
cout << "答案二" << endl;
return 0;
}
Sample Input Copy
Sample Output Copy