20 lines
275 B
Python
Executable File
20 lines
275 B
Python
Executable File
# Svi brojevi od 100 do 0 ako su deljivi sa 7
|
|
|
|
# while petlja
|
|
|
|
broj = 100
|
|
|
|
while broj > 0:
|
|
if (broj % 7 == 0):
|
|
print(broj)
|
|
broj -= 1
|
|
|
|
input()
|
|
|
|
# for petlja
|
|
|
|
for broj in range(100, 0, -1):
|
|
if (broj % 7 == 0):
|
|
print(broj)
|
|
|
|
input() |