Write an assembly program to determine the correct admission


5. Write an Assembly program to determine the correct admission price to a movie. The price of admission to a movie is $7 for kids (under 12) and $9 for adults. Display the correct admission fee after the user gives you the age for one person. 
Sample Run #1:
? 21

Sample Run #2:
? 11
7
6. Write an Assembly program to determine the price of a car rental. The car being rented costs $45 per day and frequent renters get a $15 discount on the total bill. Get as input, the number of days rented and whether the user is part of the frequent renter program (have user enter 1 if they ARE a frequent renter and 0 otherwise). Display the total cost to rent the car. 
Sample Run #1:
? 4
? 0
180 
Sample Run #2:
? 3
? 1
120
7. Write an Assembly program to output a list of number. Read from the user a starting value and an ending value. Your program should output all integers from the starting value through the ending value. 
Sample Run:
? 5
? 8
5
6
7

Request for Solution File

Ask an Expert for Answer!!
Assembly Language: Write an assembly program to determine the correct admission
Reference No:- TGS0122307

Expected delivery within 24 Hours