Description
Create a program that generates 1000 random integers between 1 and 100 (both included) and save them into a list.
Then, print the numbers in the list until it finds a number greater or equal to 90.
When it finds that number, it stops printing.
Then it prints the following 2 items:
- The count of how many numbers were printed
- The total sum of those numbers printed.
student59 –
perfect working