Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ch6ex2;
- import java.util.Scanner;
- public class Ch6Ex2
- {
- public static void main(String args[])
- {
- int number;
- Scanner sc=new Scanner(System.in);
- System.out.print("Enter a number: ");
- int num=sc.nextInt();
- for(int c=2;c<num;c++)
- {
- while(num%c==0)
- {
- System.out.println(c+" ");
- num=num/c;
- }
- }
- if(num>2)System.out.println(num);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment