Answer:
1. Start
2. Input Name, Jobs, Hours, Code
3. If Code == 'J' then
3.1 Pay = 20.00 * Hours
4. Else if Code == 'C' then
4.1 Pay = 15.00 * Hours
5. Else if Code == 'A' then
5.1 Pay = 10.00 * Hours
6. Output Name, Job, Hours, Pay
Explanation
This line starts the Pseudocode
1. Start
This line gets user inputs
2. Input Name, Jobs, Hours, Code
The following if and else statement determine the pay
3. If Code == 'J' then
3.1 Pay = 20.00 * Hours
4. Else if Code == 'C' then
4.1 Pay = 15.00 * Hours
5. Else if Code == 'A' then
5.1 Pay = 10.00 * Hours
This line prints the required output
6. Output Name, Job, Hours, Pay