31.5k views
5 votes
How can I do 3.6 code practice

User Yardie
by
4.6k points

1 Answer

4 votes

Answer:

a = int(input("Enter a number: "))

print("Largest: " + str(a) )

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

print("Largest: " + str(max(a, b)))

c = int(input("Enter a number: "))

print("Largest: " + str(max(a, b, c)))

d = int(input("Enter a number: "))

print("Largest: " + str(max(a, b, c, d)))

e = int(input("Enter a number: "))

print("Largest: " + str(max(a, b, c, d, e)))

f = int(input("Enter a number: "))

print("Largest: " + str(max(a, b, c, d, e, f)))

Step-by-step explanation:

Here you go let me know if this works!

User Corgan
by
5.1k points