The following code will program that prompts the user to enter the num- ber of hours a car is parked at the airport and outputs the parking fee.
<u>Explanation:</u>
Code:
#include<iostream>
using namespace std;
int main()
{
float hours;
cout <<"Enter number of hours a car parked at the airport: "; // prompt the user to enter hours.
cin >> hours ; // strong the hours
if (hours > = 0 && hours < =3 ) // if 0 < = h < = 3
cout << "Parking fee: 5"; //printing parking fee is 5.
else if (hours > 3 && hours < = 9)//if 3 < h < = 9
cout<<"Parking fee: "<<6*int(hours);//converting float value to int the multiplying with 6 then printing fee.
else//if 9 < h < = 24
cout<< "Parking fee: 60";// printing parking fee 60.
return 0;
}
Answer:
I'm pretty sure to get the absolute maximum amount the EFC has to be 0 or really close to it. The EFC, or Expected Family Contribution, is mainly determined by your family's income. If your family has multiple students who will be enrolled in college, the number may be lower. It's not really about what number a student "should" have though, because the only way for you to lower it yourself is to lie, and you really don't want to do that-if you are found to have lied on your FAFSA there can be some serious legal consequences.
Maybe fix the grammar first. Then give suggestions that are similar but not the same to what the boss wrote.
-hope this helped
Answer: WEB
Explanation: this is the correct answer.