100-plus-python-coding-problems-with-solutions icon indicating copy to clipboard operation
100-plus-python-coding-problems-with-solutions copied to clipboard

file of "Max of three" is not there

Open ganeshgupta opened this issue 5 years ago • 1 comments

https://github.com/ProgrammingHero1/100-plus-python-coding-problems-with-solutions/blob/master/Number-Related/User-input-to-Number.md

finding max among three numbers

a, b, c = input("Enter three Number").split() if a > b: if a > c: print(a, "is Greatest") elif b < c: print(c, "is Greatest") if b > c: print(b, "is Greatest") else: print(c, "is Greatest")

ganeshgupta avatar Jun 24 '20 07:06 ganeshgupta

I believe this issue us resolved now: Max of Three

seraph776 avatar Jul 17 '22 21:07 seraph776