Sagot :
Cevap:
a=int(input("başlangıç sayısını giriniz :"))
while True:
b=int(input("bitiş sayısını giriniz :"))
if b>a:
break
topla=0
for x in range(a+1,b):
topla=topla+x
print("sayıların toplamı :"+str(topla))
Açıklama:
başlangıç ve bitiş sayılarını toplama almıyor!
Cevap:a=int(input("başlangıç sayısını giriniz :"))
while True:
b=int(input("bitiş sayısını giriniz :"))
if b>a:
break
topla=0
for x in range(a+1,b):
topla=topla+x
print("sayıların toplamı :"+str(topla))
Açıklama:
Thank you for visiting our website wich cover about Bilgisayar. We hope the information provided has been useful to you. Feel free to contact us if you have any questions or need further assistance. See you next time and dont miss to bookmark.