Posts by ITALO RAUTON • 1 point
1 post
-
-1
votes4
answers10562
viewsA: Performatively calculate the divisors of a Python number
a = 1 num = int(input("Digite o número: ")) while a <= num: x = num % a a = a +1 if x == 0: print (a-1)
1 post
-1
votes4
answers10562
viewsa = 1 num = int(input("Digite o número: ")) while a <= num: x = num % a a = a +1 if x == 0: print (a-1)