Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a PYTHON program that computes the Harmonic Mean of n numbers. Suppose the first number is represented by (n1), the second by (n2), and
Write a PYTHON program that computes the Harmonic Mean of n numbers. Suppose the first number is represented by (n1), the second by (n2), and so on. The Harmonic mean is Hm = n/(1/n1+ 1/n2 +...+ 1/nn) . Your program should ask the user to enter the value n and the numbers and print the result.
Desired output:
Enter the value of n: 5
Enter the value of n1 : 15
Enter the value of n2 : 12
Enter the value of n3 : 10
Enter the value of n4 : 10.5
Enter the value of n5 : 12.8
The Harmonic mean is 11.8102
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started