Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Prompt the user to input each of the three numbers. Print out the statistics in this order: Largest Value Smallest Value Sum Average The program

Prompt the user to input each of the three numbers. Print out the statistics in this order: Largest Value Smallest Value Sum Average The program will be tested on a Windows computer running CLion using the C++11 standard. Any program that does not compile will receive a zero. MAKE SURE THAT YOUR PROGRAM COMPILES AND RUNS PROPERLY BEFORE YOU SUBMIT IT. Required Algorithms Average will be the sum of the three numbers divided by 3.0. Grading Criteria: The program compiles. If the program does not compile no further grading can be accomplished. Programs that do not compile will receive a zero. We will assume the user will input an accurate date, (25 Points) The program executes without exception and produces output. The grading of the output cannot be accomplished unless the program executes. (25 Points) The program produces the correct output. (25 Points) The program specifications are followed. (10 Points)The program is documented (commented) (5 Points)Use constants when values are not to be changed (5 Points)Use proper indentation (5 Points)Use good naming standards Sample Run: Enter the first number: 45.8 Enter the second number: 65.7 Enter the third number: 80.0 The largest number is: 80.0 The smallest number is: 45.8 The sum of the numbers is: 191.5 The average of the numbers IS: 63.8333 Goodbye

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Students also viewed these Databases questions

Question

Explain how the different models of memory work.

Answered: 1 week ago