NEED Algorithm to C++ Conversion Help, Please!!

Hello and thanks for reading my post. I need help converting the fallowing Algorithm into working C++ code, and below is what i have come up with so far, what do i need to do to make this compile?

Algorithm:

PayCalc

1. CaseOf
PayCode = "H"
Pay = Rate * Hours
Paycode = "P"
Pay = Rate
Paycode = "C"
Pay = Commission * Sales
Paycode = "S"
Pay = Salary

EndOfCase

2. Exit

Code:

#include <iostream>
using namespace std;
int main()
{
char H, P, C, S, paycode;
double paycode_h, paycode_p, paycode_c, paycode_s, rate, hours, pay, commission, sales, salary;
cout << "Enter Your Paycode (H,P,C,S).";
cin >> paycode;
switch(paycode)

{

case 'H':
cout << "Pay = Rate * Hours" << endl;
cin << paycode_h;
case 'P':
cout << "Pay = Rate * NoPieces" << endl;
cin << paycode_p;
break;
case 'C':
cout << "Pay = Commission * Sales" << endl;
cin << paycode_c;
break;
case 'S':
cout << "Pay = salary"<< endl;
cin << paycode_s;
break;
default:
cout << "You must enter a valid Paycode" << endl;


}
return 0;
}

Thank You!
Check your use of the std::cin. You must use the extraction operator (>>) instead of the insertion operator (<<).

For example:
1
2
int someVar = 0;
std::cin >> someVar;
Topic archived. No new replies allowed.