Answers for "Program to check whether the number is prime or not in java"

C
0

Program to check whether the number is prime or not in java

public class Main 
{
public static void main(String[] args) 
{
int num = 100;
boolean flag = false;
for (int i = 2; i <= num / 2; ++i) 
{
if (num % i == 0) {
flag = true;
break;
}
}
if (!flag)
System.out.println(num + " is a prime number");
else
System.out.println(num + " is not a prime number");
}
}
Posted by: Guest on June-12-2021
0

Program to check whether the number is prime or not in java

#include <stdio.h>void main(){int value, rem;printf("Enter an int ");scanf("%d", &value);rem = value % 2;if (rem == 0)printf("%d is an even int\n", value);elseprintf("%d is an odd int\n", value);}
Posted by: Guest on July-08-2021

Code answers related to "Program to check whether the number is prime or not in java"

Code answers related to "C"

Browse Popular Code Answers by Language