
Largest of the two numbers in Raptor
Algorithm
Input: Input two numbers
output: Largest number between the two numbers
- Start
- Input two numbers, say a and b
- check a>b
3.1 Print a is the largest - Else
4.1 Print b is the largest - Stop
FlowChart

Note: This Flowchart was created using a program called Raptor. The flowchart file can be downloaded by clicking here
Input
a:3
b:1
Output
3 is largest
Comments