Computer Science, asked by hasininaidu1418, 9 days ago

write a flowchart and algoithm to find the greater of two numbers​

Answers

Answered by tsnikhilraj2009
0

Answer:

This answer is for python

Explanation:

a=input("Enter a number: ")

b=input(,"Enter a number: ")

if (a>b):

 print (a,"is greater")

elif(b>a):

 print (b,"is greater")

else:

 print ("Both",a"and",b,"are equal")

Similar questions