| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
1 comments so far (post your own) View All Comments Latest 10 Comments:I have this Prime Checking Java coding problem:
A prime number ‘p’ is a positive integer (p>1) that can only be divided evenly by:
a) ‘p’ Itself (so the result of the division is: p/p = 1)
b) 1 (so the result of the division is p/1 = p)
The first few prime numbers are:
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31
Write a Class PrimeChecker that has checkPrime() method as follows:
public class PrimeChecker {
public static boolean checkPrime(int anyNumber){
// write your logic here
}
public static void main(String[] args) {
boolean found = false;
for (int p=-5; p<35;p++){
found = checkPrime(p);
if (found){
System.out.print(p + "\t");
}
}
}
}
Obviously, the method checkPrime will take in any integer and return true of false depending on whether integer is Prime or not.
As a tester for your code, the main method is sending a series of integers to the checkPrime method.
Here is the expected output:
2 3 5 7 11 13 17 19 23 29 31
Thanks.
Posted by Cris on Monday, 03.10.08 @ 04:58am | #52148