You are on page 1of 2

Arab Academy for Science, Technology and Maritime Transport

College of Engineering and Technology


Computer Engineering Department
ECE1101 – Programming Fundamentals and Problem Solving

Flowcharts

A computer program is a set of instructions that the computer can understand which it will
obey sequentially one after the other.
A program must be planned and written down as a set of steps to follow.
One method is using visual tools such as Flowcharts.

Structures of Flowcharts:
1. Sequence Structure.
2. Decision Structure.
3. Repetition Structure.

Flowchart Symbols:
Arab Academy for Science, Technology and Maritime Transport
College of Engineering and Technology
Computer Engineering Department
ECE1101 – Programming Fundamentals and Problem Solving

Sheet 1

Draw a flowchart for each of the following:


1. Find the sum of two entered numbers.
2. Convert the length in feet to centimeter, ft × 30 = cm
3. Read the two sides of a rectangle and calculate its area.
4. Calculate the area and the circumference of a circle.
5. Convert temperature from Celsius to Fahrenheit, (°C × 9/5) + 32 = °F
6. Determine the largest number of two entered numbers.
7. Determine the largest number of three entered numbers.
8. Identify either the entered number is positive or negative.
9. Identify either the entered number is even or odd.
10. Read two numbers and if the numbers were odd display their sum.

You might also like