碰得散有多亏
运行下面这段程序,填写它打印出来的结果。
PAGE = 4096
touched_bytes = 1
times = 51200
print(str(touched_bytes * times) + "/"
+ str(times * PAGE) + "/"
+ str(times * PAGE // (touched_bytes * times)))
运行下面这段程序,填写它打印出来的结果。
PAGE = 4096
touched_bytes = 1
times = 51200
print(str(touched_bytes * times) + "/"
+ str(times * PAGE) + "/"
+ str(times * PAGE // (touched_bytes * times)))
全部评论