Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Why is this code giving an error at div ebx at the calculate and print mean section, pls fix the error and make sure the

Why is this code giving an error at div ebx at the calculate and print mean section, pls fix the error and make sure the code runs correctly output looks exactly like this
Sample Run:
Please enter a number: 2
Please enter a number: 3
Please enter a number: 4
Please enter a number: 5
Please enter a number: 6
Please enter a number: 7
Please enter a number: 8
Please enter a number: 9
Please enter a number: 0
Please enter a number: 10
The sum is: 54
The mean is: 54/10
The original array: 23456789010
After a rotation: 10234567890
After a rotation: 10023456789
After a rotation: 10092345678
After a rotation: 10098234567
After a rotation: 10098723456
After a rotation: 10098762345
After a rotation: 10098765234
After a rotation: 10098765423
After a rotation: 10098765432
Press any key to continue ...
Question : Write a complete program that: 1. Prompt the user to enter 10 numbers. 2. save those numbers in a 32-bit integer array. 3. Print the array with the same order it was entered. 3. Calculate the sum of the numbers and display it.4. Calculate the mean of the array and display it.5. Rotate the members in the array forward one position for 9 times. so the last rotation will display the array in reversed order. 6. Print the array after each rotation. check the sample run. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Don't use any shift or rotate instructions which we have not covered yet. You need to use loops and any kind of addressing. All you work should be on the original array. Don't make a copy of the array at any time. Add comments to make your program easy to read. check the rubric before you submit.
image text in transcribed

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