URI Online Judge | 1095
Sequencia IJ 1
Adaptado por Neilor Tonin, URI
Brasil
Timelimit: 1
Você deve fazer um programa que apresente a sequencia conforme o exemplo abaixo.
Entrada
Não há nenhuma entrada neste problema.
Saída
Imprima a sequencia conforme exemplo abaixo
URI Online Judge | 1095
Sequence IJ 1
Adapted by Neilor Tonin, URI
Brazil
Timelimit: 1
Make a program that prints the sequence like the following example.
Input
This problem doesn't have input.
Output
Print the sequence like the example below.
i = 1
j = 60
while j >= 0:
print('I={} J={}'.format(i,j))
i = i + 3
j = j - 5
i = 1
j = 60
while j >= 0:
print('I={} J={}'.format(i,j))
i = i + 3
j = j - 5
1 Comentários