Prepare an Assembly program that reads in a number of cents. The program will write out the number of dollars and cents separately.
Write an Assembly program to evaluate the cost for a group to attend a movie. Tickets are $6 for children and $8 for adults.
Read in the number of children and the number of adults, and display the total movie cost.
Sample Run:
? 2
? 1
20
Prepare an Assembly program to read three numbers in from the user, and output BOTH the sum and the product of the three numbers.
Sample Run:
? 2
? 3
? 4
9
24