a program to sort three values (from smallest to largest) entered from the keyboard.
Algorithm:
1. INPUT a,b and c
2. If a greater than b
If a greater than c
If b greater than c
The order is a, b, c
Else
The order is a, c, b
Else
.
.
.
How will i code this?