write a program to accept a number and display whether it is prime or not
Answers
Answered by
1
Explanation:
Program to Check Prime Number
Enter a positive integer: 29 29 is a prime number. In the program, a for loop is iterated from i = 2 to i < n/2 . If n is perfectly divisible by i , n is not a prime number. In this case, flag is set to 1, and the loop is terminated using the break statement.
Attachments:
Similar questions