Question: Using the windows32 or windows64 framework, write and complete 80x86 assembly language program that prompts You need three variables: sum, count, and average First initialize
Using the windows32 or windows64 framework, write and complete 80x86 assembly language program that prompts You need three variables: sum, count, and average
First initialize sum and count to 0
Read the first number, add to sum
Use a loop (may be while) to read more numbers
Add numbers to sum
Count numbers
The loop stops by reading 0.
Do not include 0 as data
After the loop compute average
Use div operation and ignore the remainder

LTEO 5:39 Project 3- Description 1. First display a message box to display your name and project number 2. Then display a message boxes to read numbers 3. Input stops by readingo 4. Then sum, count, and average is computed. 5. The program end with last message box. Your own name and project number Four numbers are entered: 25,40, 55, 22 When O is entered, the program stops. (O is not part of data) Numbers are added: 25 40+55+22 142 Fours numbers are read Average is 142/4 35 (remainder is ignored). Program ends with this messaee LTEO 5:39 Project 3- Description 1. First display a message box to display your name and project number 2. Then display a message boxes to read numbers 3. Input stops by readingo 4. Then sum, count, and average is computed. 5. The program end with last message box. Your own name and project number Four numbers are entered: 25,40, 55, 22 When O is entered, the program stops. (O is not part of data) Numbers are added: 25 40+55+22 142 Fours numbers are read Average is 142/4 35 (remainder is ignored). Program ends with this messaee
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
