0% found this document useful (0 votes)
73 views5 pages

Chapter - 2: Flowcharts For Problem Solving: Programming and Problem Solving Through C Language O Level / A Level

The document discusses flowcharts for problem solving using C language. It describes flowchart symbols and provides examples of flowcharts to calculate area of a circle, find the greatest of 2 numbers, print even numbers between 9 and 100, print and calculate odd numbers less than a given number, calculate average from exam scores, and find sum of first 100 natural numbers.

Uploaded by

J INSIDER
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
73 views5 pages

Chapter - 2: Flowcharts For Problem Solving: Programming and Problem Solving Through C Language O Level / A Level

The document discusses flowcharts for problem solving using C language. It describes flowchart symbols and provides examples of flowcharts to calculate area of a circle, find the greatest of 2 numbers, print even numbers between 9 and 100, print and calculate odd numbers less than a given number, calculate average from exam scores, and find sum of first 100 natural numbers.

Uploaded by

J INSIDER
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Programming and Problem Solving through C Language

O Level / A Level

Chapter -2 : Flowcharts for Problem Solving

FLOWCHART

The flowchart is a diagram which visually presents the flow of data through processing
systems. This means by seeing a flow chart one can know the operations performed and the
sequence of these operations in a system. Algorithms are nothing but sequence of steps for
solving problems. So a flow chart can be used for representing an algorithm.

A flowchart, will describe the operations (and in what sequence) are required to solve a given
problem. You can see a flow chart as a blueprint of a design you have made for solving a
problem.

Flowchart Symbols

There are 6 basic symbols commonly used in flowcharting of assembly language Programs:
 Terminal,
 Process,
 input/output,
 Decision,
 Connector and
 Predefined Process.
Problem 1 : Flowchart to calculate the area of circle.
Problem 3: Flowchart to find the greatest from 2 numbers.
Problem 4: Flowchart to print the Even numbers between 9 and 100.

Problem 5: Flowchart for printing odd numbers less than a given number. It should also
calculate their sum and count.
Problem 6 : Flowchart for the calculate the average from 25 exam scores.

Assignments

1. Draw a flowchart to find the sum of first 100 natural numbers.


2. Draw a flow chart to find the largest of 3 numbers.
3. Draw a flowchart for check a given number is prime or not.

You might also like