今有物不知其数,三三数只剩其二,五五数只剩其三,七七数只剩其二。 none = True num = 0 while none: num += 1 if num % 3 == 2 and num % 5 == 3 and num % 7 == 2: print(num) none = False