Create an HLA Assembly language program that queries for numeric values and computes the rolling average of the numbers entered, until the user quits. The rolling average should be a floating-point value, as seen in the program dialogue shown below.
enter data point: 80.0
rolling average = 80.000
more data? y
enter data point: 100.0
rolling average = 90.000
more data? y
enter data point: 100.0
rolling average = 93.333
more data? n
final rolling average = 93.333



Answer :

Other Questions