Problem A: 二进制运算(1)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:813
Solved:244
Description
求下列运算的二进制结果 (8位二进制,不足补0, 例如二进制结果为110,则输出00000110)
(1) 19 & 35
(2) 88 & 42
(1) 19 & 35
(2) 88 & 42
Output
答案输出格式如下:
#includeusing namespace std; int main() { cout << "答案一" << endl; cout << "答案二" << endl; return 0; }
Sample Input Copy
Sample Output Copy