Question: ***** Assembly Language 80X86 **** The following design will input numbers into an array of doublewords, using the sentinel value -9999 to terminate input. nbrElts
***** Assembly Language 80X86 ****
The following design will input numbers into an array of doublewords, using the sentinel value -9999 to terminate input. nbrElts := 0 get address of array prompt for and input number while number != -9999 loop add 1 to nbrElts store number at address add 4 to address prompt for and input number end while Implement this design in a windows32 program that uses a dialog box to prompt for and input each number. Assume that no more than 100 numbers will be entered. Use a single message box to report the sum of the numbers and how many numbers were entered (not counting the sentinel value).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
