im a beginner and my teacher gives this question 2 solve which i definetly need help.

Go4Expert Member
25Jun2010,17:02   #1
ranchani's Avatar
Write a JAVA program in which a positive whole number is first read in. A ‘for-loop’ is used to extract the factors of the given number. If there are no factors in the range 2 to (n-1), then that number should be a prime number. A break statement is used to transfer the control out of the for loop, if there is a factor ?
Go4Expert Founder
25Jun2010,17:20   #2
shabbir's Avatar
Show your code i.e. the attempt to code it
Go4Expert Member
25Jun2010,18:00   #3
ranchani's Avatar
Quote:
Originally Posted by shabbir View Post
Show your code i.e. the attempt to code it
actually i don't know to code it............tats my probs....i just know how 2 begin

Code:
   import java.io.*;
            class Number
            {
            Public static void main (String [] args) throws IOException
                      {
                      System.out.print(“Enter the number:”);
                     InputStreamReader reader = new InputStreamReader(System.in);
                     BufferedReader in =new BufferedReader(reader);
                     String text=in.readLine();

Last edited by shabbir; 28Jun2010 at 09:22.. Reason: Code blocks
Go4Expert Founder
25Jun2010,19:18   #4
shabbir's Avatar
Then first get the code as submission of codes from any online forum will not be of any help
Go4Expert Member
25Jun2010,19:26   #5
ranchani's Avatar
thanz 4 the advice ill try 2 write the code as much as i can......................
Pro contributor
28Jun2010,03:12   #6
virxen's Avatar
maybe this is what you want.Try and tell me.

Code:
import java.io.*;
public class Number1{
    
public static void main (String [] args) throws IOException{
    
    InputStreamReader reader = new InputStreamReader(System.in);
    BufferedReader in =new BufferedReader(reader);
    String text="";
    int number=-1;
    while(number<=0){
        System.out.print("Enter the number:");
        text=in.readLine();
        try{
           number=Integer.parseInt(text);
           if (number<=0) System.out.println("number must be positive and not 0!!!");
        }catch(NumberFormatException e){
           System.out.println("error enter a number!!!");
        }
        
    }
    //now you have a number to check for factors
    if (number==1) 
           System.out.println("1 is prime number");
    else{
        int n=number;
        int i;
        int factors=0;
        for (i=2;i<n;i++){
            while (number%i==0){
                 factors++;
                 number/=i;
                 System.out.println("factor="+i);
            }
            
        }
        if (factors>0) 
             System.out.println("\nnot a prime number");
        else
             System.out.println("\nit is a prime number!!!");
    }    
}
}
Light Poster
28Jun2010,09:15   #7
Chantheeya's Avatar
Hey varsha!! I hope u got the code for this program... Otherwise, get it from me in class!!!
Go4Expert Founder
28Jun2010,09:23   #8
shabbir's Avatar
Quote:
Originally Posted by Chantheeya View Post
Hey varsha!! I hope u got the code for this program... Otherwise, get it from me in class!!!
Sounds interesting.
Go4Expert Member
26Jul2010,21:09   #9
ranchani's Avatar
hey thankz every1 4 helping me................
Light Poster
6Aug2010,22:48   #10
atsukoarai86's Avatar
I think your problem may be more of a failure of logic than a failure of java. If I were you, I would attempt to formulate an algorithm to solve the problem in question then flesh it out in pseudocode then convert it to java syntax.

If the problem is that you don't understand how to actually write the code in java but you understand how to solve the problem, that would be a question that I'm sure your java teacher would be happy to answer.