Skip to content

Commit

Permalink
Added code to check whether the number is prime or not
Browse files Browse the repository at this point in the history
  • Loading branch information
qtsathish committed May 25, 2021
1 parent 0ff325b commit 3aab9cf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions May21/looping/primenumber.py
@@ -0,0 +1,18 @@
# This program will check whether the number is prime or not

number = int(input('Enter the number: '))
index = 2
is_prime = True # Flag approch
while index < number:
if number % index == 0:
# the number is divisible by index so not prime
# should do some thing to specify number is not prime
is_prime = False
break
index = index + 1

if is_prime:
print(f"{number} is prime")
else:
print(f"{number} is not prime")

0 comments on commit 3aab9cf

Please sign in to comment.