Skip to content

Instantly share code, notes, and snippets.

@devrsantos
Created March 16, 2025 19:11
Show Gist options
  • Save devrsantos/52ff8994d5b42b09d6d9cac1c7f42195 to your computer and use it in GitHub Desktop.
Save devrsantos/52ff8994d5b42b09d6d9cac1c7f42195 to your computer and use it in GitHub Desktop.
n1 = float(input("Insira o número: "))
if n1 <= 1:
print(f"O número {n1} não é primo.")
else:
for i in range(2, int(n1**0.5) + 1):
if n1 % i == 0:
print(f"O número {n1} não é primo.")
break
else:
print(f"O número {n1} é primo.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment