
Need a completed C++
2a.
//initialize array
arr[20]
index = 0
for 1 to 20
//get user input value into array
arr[index] = input
index = index + 1
//calculate average
avg = sum(arr) / 20
i = 0
// iterate for 20 numbers
for 1 to 20
//print each number's difference
print avg - arr[i]
i = i+1
2b.
//initialize array
arr[20]
index = 0
// loop for 20 integers
for 1 to 20
//get user input value into array
arr[index] = input
index = index + 1
// if user enters -1 exit from loop
if input is -1
break
//calculate average
avg = sum(arr) / arr.length
i = 0
// iterate for array length
for 1 to arr.length
//print each number's difference
print avg - arr[i]
i = i+1

C++ program for ( 2a. )
.png)
.png)
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 4 images

- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





