1
0

hotel.h 451 B

123456789101112131415161718
  1. /* hotel.h -- constants and declarations for hotel.c */
  2. #define QUIT 5
  3. #define HOTEL1 180.00
  4. #define HOTEL2 225.00
  5. #define HOTEL3 255.00
  6. #define HOTEL4 355.00
  7. #define DISCOUNT 0.95
  8. #define STARS "**********************************"
  9. // shows list of choices
  10. int menu(void);
  11. // returns number of nights desired
  12. int getnights(void);
  13. // calculates price from rate, nights
  14. // and displays result
  15. void showprice(double rate, int nights);