I need help starting the program for this assignment

The cost of renting a room at a hotel is, say $100.00 per night. For special occasions, such as a wedding or conference, the hotel offers a special discount as follows: If the number of rooms booked is at least 10, the discount is 10%; at least 20, the discount is 20%; and at least 30, the discount is 30%. Also if rooms are booked for at least 3 days, then there is an additional 5% discount. Write a program that prompts the user to enter the cost of renting one room, the number of rooms booked, the number of days the rooms are booked, and the sales tax (as a percent). The program outputs the cost of renting one room, the discount on each room as a percent, the number of rooms booked, the number of days the rooms are booked, the total cost of the rooms, the sales tax, and the total billing amount. Your program must use appropriate named constants to store special values such as various discounts. I really need help
price = 100
roomsBooked = ?
discount = 0

if(specialOccasion)
{
if(roomsBooked = 10)
discount = 10%
if(roomsBooked = 20)
discount = 20%

}

This should help you get started at least. Try do your best do get as much done as possible and come back if you really need more help.
Topic archived. No new replies allowed.