Определите, что будет напечатано в результате выполнения следующего алгоритма:

a = 23
b = 4
while a > b:
if a % 2 == 0:
b = b + a
else:
a = a - 2 * b + 1
print(b)​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2025 SCHOLAR.TIPS - All rights reserved.