Created
March 16, 2025 19:11
-
-
Save devrsantos/52ff8994d5b42b09d6d9cac1c7f42195 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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