Question: In Assembly Language Please Write a program called NumAverage that inputs numbers (non-zero positive integers) from a user, averages those numbers, and then displays the

In Assembly Language Please Write a program called "NumAverage" that inputs numbers (non-zero positive integers) from a user, averages those numbers, and then displays the result.The program should keep asking for new numbers until the user enters "q" (for quit) or any other character. At that time, the program should average all the numbers entered and display the result. You will need a counter to keep track of the how many numbers are entered. Make sure you display adequate instructions on how the program works. Also display an informative output.

Example: Enter a number: 32

Enter a number: 18

Enter a number: 10

Enter a number: q

The average of your numbers is: 20

================================

For ex write in java language

int sum =0 ; int i =0;

while (input != 'q'){

print(" Enter a number :");

input=next.Int();

sum =input + sum;

i++;}

print ("average number" + ( sum /i) );

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!