Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ coding Write the two versions of program that reads a sequence of positive integers from the user, caluclate their geometric mean, and print the

C++ coding

Write the two versions of program that reads a sequence of positive integers from the user, caluclate their geometric mean, and print the geometric mean

Your two versions should read the integer sequence in two ways: a) First read the length of the sequence. For example, an execution would look like.

Please enter the length of sequence:3

Please enter your sequence:

1

2

3

The geometric mean is: 1.8171

b) Keep reading the numbers until -1 is entered. For example, an execution would look like:

Please enter a non-empty sequence of positive integers, each one in a separate line.End your sequence by typing -1:

1

2

3

-1

The geometric mean is: 1.8171

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started