Explore Westonci.ca, the top Q&A platform where your questions are answered by professionals and enthusiasts alike. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

Write a program that asks the user for a positive nonzero integer value. The program should use a loop to get the sum of all the integers from 1 up to the number entered. For, example if the user enters 50 , the loop will find the sum of 1,2,3,4,...,50. while loop

Sagot :

num = 0

while num <= 0:

   num = int(input("Enter a number: "))

i = 1

total = 0

while i <= num:

   total += i

   i += 1

print(total)

I wrote my code in python 3.8. Best of luck.