Question: Using while loop Write the code in C++ And fallow the instructions please! * I need a valid unique answer better than the other answers
CSIS 123 C++ Programming Fundamentals Input Loop with Summary Calculations End Create the Windows program described in a suitable folder. Name the Project Assign06-LoopCaleulations. Save the final version of the project to your H: drive and put a copy on X: to turn in for grading Prompt the user to input an integer value. Process the entry and continue to prompt for additional integer input until the user enters a negative value. This processing must include: 1. A running total (sum) of the integer values input. Use the+ operator to increase stored sum. 2. Compare previous maximum and minimum values. Set to current entry if it represents new high or low 3. Increment a counter for each odd or even integer entered. Use modulus operator (%) to find odd or even. 4. Keep a count of the total number of integer values input. Use the increment operator++ to tally count 5. Calculate an average (floating-point decimal) of the integer values entered (if count is greater than zero) Both the counter and total sum should be integers. Use a statie_cast
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
