这台机器一共能有几条指令
上面各式各样,下面也是
写的人
中间
造的人
运行下面这段程序,填写它打印出来的结果。
def decode_a(w):
return (w >> 6) & 3, (w >> 5) & 1, w & 31
op_bits = 2
print(str(2 ** op_bits) + "/" + str(decode_a(0b01000111)[0]))
上面各式各样,下面也是
写的人
中间
造的人
运行下面这段程序,填写它打印出来的结果。
def decode_a(w):
return (w >> 6) & 3, (w >> 5) & 1, w & 31
op_bits = 2
print(str(2 ** op_bits) + "/" + str(decode_a(0b01000111)[0]))
全部评论