Activity 2 Algorithms IPO Flowchart C
Activity 2 Algorithms IPO Flowchart C
ACTIVITY 1 & 2
Algorithms [IPO and Flowchart]
Length Area =
INPUT PROCESS Length OUTPUT Area
Width * Width
Pseudo Code:
Start
Input Length, Width
Area = Length * Width
Print Area
End
Flowchart:
Start
Input Length,
Width
Print Area
End
1. CONVERT FEET INTO METER
This program will accept measurement in feet and convert it into meter then display the result.
IPO Model:
Pseudo Code:
Start
Input Feet
Meter = Feet * 0.305
Print Meter
End
Flowchart:
Start
Input Feet
Print Meter
End
IPO Model:
Pseudo Code:
Start
Input Philippine Peso (Php)
Convert Dollar = Peso * 50.40
Print Dollar ($)
End
Flowchart:
Start
Input Philippine
Peso (Php)
End
IPO Model:
Pseudo Code:
Start
Input Number hour’s work, Rate Per Hour
Gross Salary of the Employee = Number Hour’s of Work*Rate PerHour
Print Gross Salary of the Employee
End
Flowchart:
Start
Input Number
Hour’s work, Rate
Per Hour
End