ProgrammingHero1 / 100-plus-python-coding-problems-with-solutions

A list of python problems for beginners and intermediate developers
http://www.programming-hero.com
844 stars 366 forks source link

file of "Max of three" is not there #1

Open ganeshgupta opened 4 years ago

ganeshgupta commented 4 years ago

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")

seraph776 commented 2 years ago

I believe this issue us resolved now: Max of Three