+ 1
Is it possible to find prime number without using loops?
Just to use if else statement, c programming language.
3 ответов
+ 2
Just try to use in add the recursion.
+ 2
from sympy import isprime as p
k=int(input())
if not p(k):
print('Not',end=' ')
print('A Prime Number')
In python it's possible with some function but actually we can't check for a number to be prime without a loop or recursion
+ 2
Ahmad Ishaq this is an example with above mentioned methode:
https://code.sololearn.com/cTA290NqBX8W/?ref=app