Posts by KARYNE • 11 points
1 post
-
0
votes4
answers12868
viewsA: How to print multiples of N in a range?
Mine rolled like this in Python 3: N = int(input()) A = int(input()) B = int(input()) for i in range(A, B + 1): if i % N == 0: print (i) if N > B: print ('INEXISTENTE')…