#include<stdio.h> int main(){ int num,i=1,j,k; printf("\nEnter a number:"); scanf("%d",&num); while(i<=num){ k=0; if(num%i==0){ j=1; while(j<=i){ if(i%j==0) k++; j++; } if(k==2) printf("\n%d is a prime factor",i); } i++; } return 0; }
Filled Under
C
Prime factor of a number in c
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.