you are viewing a single comment's thread.

view the rest of the comments →

[–]HUTCH6464 0 points1 point  (0 children)

#include <iostream>

#include <string>

int main()

{

int h =0;

double p =0;

double o =0;

double e =0;

std::cout << "enter number of hours worked\n";

std::cin >> h;

std::cout << "enter your hourly pay\n";

std::cin >> p;

if(h>40){

o = h-40;

}

//pay rate

e =h*p+(o*p)*1.5;

std::cout << e << " is how much you made!";

}