🔒 Closed Getting prime factors

Status
Not open for further replies.

ken21

Leecher
#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
int i,num;

printf("Enter number:");
scanf("%d",&num);

printf("\nAll prime factors of %d are: ",num);

i=2;

while(num!=0){
if(num%i!=0)
i=i+1;
else{
num=num/i;
printf("\t%d",i);
if(num==1)
break;
}
}
getch();
}
 
Status
Not open for further replies.

About this Thread

  • 4
    Replies
  • 822
    Views
  • 4
    Participants
Last reply from:
jjarongay

Trending Topics

Online now

Members online
1,191
Guests online
3,455
Total visitors
4,646

Forum statistics

Threads
2,329,167
Posts
29,246,756
Members
1,156,300
Latest member
milk_
Back
Top