having trouble with this program was able to compile and fully do it just not correctly bc I hard coded the numbers and didnt use the variables correctly and confused on what I need to do HELP PLEASE
Then use the variables, not the numbers in your code.
cout << " Length of stay = " << numDays<< " days \n";
room_charge = numDays * roomRate;
Need variable days initialized to 6, roomRate initialized to 100.0, resortFee initialed to 10, then use those variables instead of hard coded numbers in your calculations: