числа, не превышающие n
Код: Выделить всё
n = int(input())
i = 1
result = []
while i * i n
[*]Выведите все квадраты ≤ n
[/list]
Подробнее здесь: [url]https://stackoverflow.com/questions/79869561/perfect-square-numbers-in-python[/url]Код: Выделить всё
n = int(input())
i = 1
result = []
while i * i n
[*]Выведите все квадраты ≤ n
[/list]
Подробнее здесь: [url]https://stackoverflow.com/questions/79869561/perfect-square-numbers-in-python[/url]