In: Computer Science
Thanks for the question, Could you please mention the language (C, C++, C#, Java, Python) in which to write the algorithm. Below are the pseudocode and flowchart.
===============================================================
Psuedocode
begin
numeric a, b, c , smallest
display "Enter your first number"
accept a
smallest = a
display "Enter your second number"
accept b
if (smallest>b)
smallest = b
end if
display "Enter your third number"
accept c
if (smallest>c)
smallest = c
end if
display "Smallest number" + smallest
end
=============================================================
Flowchart