Ответ:
a=float(input())
b=float(input())
k=0
while a>=b:
a=a-b
k+=1
print(k)
a = float(input())
b = float(input())
c = a
k = 0
while c > b - 0.01:
k += 1
c -= b
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a=float(input())
b=float(input())
k=0
while a>=b:
a=a-b
k+=1
print(k)
Ответ:
a = float(input())
b = float(input())
c = a
k = 0
while c > b - 0.01:
k += 1
c -= b
print(k)
Объяснение: