7.2.. Učitati četverocifren broj i ispisati njegovu najveću cifru.

Listing programa:

# 07211103
#Najveca cifra cetvorocifrenog broja
a = int(input("cetvorocifren broj"))
print
x = a // 1000  # hiljadice
y = (a % 1000) // 100 # stotice
z = (a % 100) // 10  # desetice
w = a % 10  # jedinice

max = x
if max < y:
    max = y
if max < z:
    max=z
if max < w:
    max=w
print("cetvorocifren broj", a, "ima najvecu cifru", max)

Ispis na ekranu:

Index