Python coding (flowchart & Pseudo code)
hours = input(30) hourlyrate = input(12) 12 print(int(30) * int(12)) 360 #for this case, Bob has worked a total of 30 hours at a telephone company. The pay comes out to be 360 without taxes deducted. # I will now calculate th average Miles per gallon obtained on a trip. milesdriven = input(350) gasused = input(12) print(350 / 12) # For this case, my Ford Fusion Hybrid has driven 350 miles while only using 12 gallons of gas.