answersLogoWhite

0

public class Primes {

public static void main(String[] args) {

for(int i = 2; i < 100; i++) {

if(isPrime(i)) {

System.out.println(i);

}

}

}

public static boolean isPrime(int n) {

if(n 0) return false;

}

return true;

}

}

}

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you print a number as on or more literal words in PHP?

Create an array like so $numbers = array(); $numbers['0'] = "ZERO"; $numbers['1'] = "ONE"; and so on.. till you decide that's enough then to print it, echo the array with the desired key like so.. Example I print 5 in words echo $numbers['5']; which would print FIVE Good luck


Program to print all the even numbers of an array in visual basic?

find even number in array


Is it possible to print matrix without using array?

Yes but why.


Write a program to print first 100 alternative prime numbers?

This would require some computer knowledge. It can make it easier to find out the prime numbers without figuring it out in your head.


Write a java program to print the result in the series?

If you have the series stored in an array, you loop through the array and print each array element in turn. Another possibility is to print out the numbers in the series as you generate them. In that case, you may not need to store anything (depending on the series, of course).


Write a c program to find the maximum of two numbers and print out with its position?

maxValue = function (array) {mxm = array[0];for (i=0; i&lt;array.length; i++) {if (array[i]&gt;mxm) {mxm = array[i];}}return mxm;}; i don't know


How do you print array variable without using array subscripts?

Well the most prolific answer to this query would be the use of pointers.Use a pointer and allocate it to the array of interest and start printing.


How do you write a program to print prime numbers from 1 to 100 in PHP?

&lt;pre&gt; &lt;?php $limit = 100; $primeList = array(); for($i = 2; $i &lt; round(sqrt($limit)); $i++) { foreach($primeList as $num) { if($i%$num 0)) continue 2; } $prime[] = $i; } print_r($prime); ?&gt; &lt;/pre&gt; Based on Sieve of Erathosthenes. See the related link for further information.


How do you write a program which reads a list of ten numbers and print the list in reserve order in c program?

The simplest way is probably to read the numbers into an array and then prints each element of the array starting at the last one and moving backwards.


Program for print prime all number from 1 to 100 in foxpro?

Oh, what a lovely request! In FoxPro, you can create a program to print all prime numbers from 1 to 100 by using a loop to check each number for divisibility only by 1 and itself. If it meets this criteria, you can print it out on the screen. Remember, every number is unique and special, just like a happy little tree in a vast forest.


Write down programin GWBASIC to sort numbers in an array?

10 cls 20 end 30 next 40 print


How do you write a program in java to read ten numbers and print sum of ten integers?

Add the numbers into one variable as you read them in. But if you prefer, you can read the numbers into an array and then use a loop to add the numbers together.