my teacher has given me a assignment for c plus but im at my wits end here. im so frustrated! heres what he wants
You are tasked with creating a mileage caclulator to calculate the amount of money that should be paid to employees. The mileage is computed as follows
An amount of .25 for each mile up to 100 miles
An amount of .15 for every mile above 100.
So 115 miles would be
(.25 * 100) + (.15 * 15)
This can all be coded using a mathematical solution but I want you to use an if / else statement. Here is how you are to implement it:
If the total miles input is less than or equal to 100 then simply calculate the miles * .25 and output the amount
otherwise compute the total amount for all miles mathematically.
Input: Total number of miles
Process: dollar amount owed for miles driven
Output: Amount of money due
heres the code i have so far im so lost.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Put the code#include <iostream>
using namespace std;
int main()
{
int miles;
miles = 0;
cout << "enter the amount of miles driven" << endl;
cin >> miles;
if (miles >= 100)
{
cout << " you are owed 25.00" << endl;
}
else if (miles =115)
{
cout << "you are owed 27.00" << endl;
cin >> miles;
}
} you need help with here.
|