If the type of k is int, what is the number of iterations of the following while loop?k = 50 while k > 1: print(k) k = k // 2 A、3; B、4; C、5; D、6 发布时间:2025-07-16 08:28:20