Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Database Horse Betting The Road To Absolute Horse Racing 2

Authors: NAKAGAWA,YUKIO

1st Edition

B0CFZN219G, 979-8856410593

More Books

Students also viewed these Databases questions