Java program to check given number is prime number or not
Similar Questions:
- Prime Numbers Java Example
- Print prime numbers between 1 and given number using for loop
- //check to see if the number is prime
- boolean isPrime = true;
- for(int j=2; j < 10 ; j++){
- if(10 % j == 0){
- isPrime = false;
- break;
- }
- }
- // print the number
- if(isPrime)
- System.out.print(i + " ");
Solution:
- public class PrimeNumbersExample {
- public static void main(String[] args) {
- //define limit
- int limit = 100;
- System.out.println("Prime numbers between 1 and " + limit);
- //loop through the numbers one by one
- for(int i=1; i < limit; i++){
- boolean isPrime = true;
- //check to see if the number is prime
- for(int j=2; j < i ; j++){
- if(i % j == 0){
- isPrime = false;
- break;
- }
- }
- // print the number
- if(isPrime)
- System.out.print(i + " ");
- }
- }
- }
Comments
Post a Comment