Question: Write a program which uses a while loop to sum the squares of integers (starting from 1) until the total exceeds 200. Print the
Write a program which uses a while loop to sum the squares of integers (starting from 1) until the total exceeds 200. Print the final total and the last number to be squared and added. Q2. Write a program which finds the factorial of a given number. E.g. 3 factorial, or 3! is equal to 3 x 2 x 1; 5! is equal to 5 x 4 x 3 x 2 x 1, etc.. Your program should only contain a single loop. Q3. Write a program which prompts the user for 10 floating-point numbers and calculates their sum, product and average. Your program should only contain a single loop.
Step by Step Solution
3.38 Rating (154 Votes )
There are 3 Steps involved in it
Here are the solutions to your questions python Q1 tot... View full answer
Get step-by-step solutions from verified subject matter experts
