Can someone please give me some help. My instructor wants us to create a program using a flowchart which he has given. He expects to learn how to create them by using resources such as google and others. which is due the night before class, when we get to class he explains it which doesn't help.
flowchart:
main() --> Declare Real hoursWorked, payRate, grossPay --> getHoursWork (hoursWorked) --> getPayRate (payRate) --> hoursWorked> BASE_HOURS --> [If false] calcRegularPay (hoursWorked, payRate, grossPay) --> [If True] calcPayWithOT (hoursWorked, payRate, grossPay) --> display "The Gross pay is $", grossPay --> end