Saturday, April 4, 2015

Java program print prime numbers

  1. public class GeneratePrimeNumbersExample {
  2.  
  3.         public static void main(String[] args) {
  4.                
  5.                 //define limit
  6.                 int limit = 100;
  7.                
  8.                 System.out.println("Prime numbers between 1 and " + limit);
  9.                
  10.                 //loop through the numbers one by one
  11.                 for(int i=1; i < 100; i++){
  12.                        
  13.                         boolean isPrime = true;
  14.                        
  15.                         //check to see if the number is prime
  16.                         for(int j=2; j < i ; j++){
  17.                                
  18.                                 if(% j == 0){
  19.                                         isPrime = false;
  20.                                         break;
  21.                                 }
  22.                         }
  23.                         // print the number
  24.                         if(isPrime)
  25.                                 System.out.print(+ " ");
  26.                 }
  27.         }
  28. }

No comments:

Post a Comment

TestNG - Can i use the 2 different data providers to same @test methods in TestNG?

public Object [][] dp1 () { return new Object [][] { new Object [] { "a" , "b" }, new Obje...