Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[CODE]#include<stdio.h> #include<conio.h> void main() { int n,i; clrscr(); for(n=3;n<=40;n++) { for(i=2;i<n;i++) { if(n%i==0){ printf("%d is not a prime no \n",n); break; } else{ printf("%d number is prime \n",n); break; } } } getche(); }[/CODE]
The End.
ramesh thota