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
#include<stdio.h> void main() { int n,i,j; cout<<"up to where u want twins"; cin>>n; for(i=2;i<n;i++) { flag=0; for(j=2;j<=sqrt((double)i);j++) { if(i%j==0) { flag=1; break; } } if(flag==1) {
The End.
BhaskaR RaO