What should i do about this error ?

Правка en1, от lullaboy, 2020-08-27 21:33:23

****Test: #1, time: 77 ms., memory: 0 KB, exit code: 1, checker exit code: 0, verdict: RUNTIME_ERROR****

here is the code :

n = int(input()) for t in range(0, n): t = int(input()) if t % 3 == 0 and t % 5 == 0: print("FizzBuzz") elif t % 3 == 0: print("Fizz") elif t % 5 == 0: print("Buzz") elif t % 3 != 0 or t % 5 != 0: print("")

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en1 Английский lullaboy 2020-08-27 21:33:23 437 Initial revision (published)