answersLogoWhite

0


Best Answer

#include

#include

void

main()

int prime(int n)

{

int i, j=n/2;

clrscr();

for(i=2; i<=j; i++)

{

if(n%j==0)

return 0;

}

return 1;

}

void

main()

{

int a,b,i;

clrscr();

printf("\n enter the twin prime numbers");

scanf("d",&a,&b);

printf("\n twin prime within this range \n");

if(a%2!==0)

i=a+1;

else;

i=a;

while(i+2<=b)

{

if(prime (i) &&prime(i+2) )

printf("\n%d\t%d",i,i+2);

i+1=2;

}

getch();

}

#include

#include

void main()

{

Int i, j, C;

printf("Enter the no");

Scanf("%d", &n);

for(j=2; j

{

If(n%j==0)

{

c++;

}

}

if(c==0)

{

printf(" Entered no is prime no");

}

getch();

}

Code example:

#include

#include

#include

void main()

{

int i,j;

clrscr();

for(i=3;i<=1000;i++)

{

for(j=2;j<=i;j++)

{

if(i%j==0)

break;

}

if(i==j)

cout<

}

getch(); // this is the easiest method for finding prime nos made by Taabi

}

B:

To write the c version: i.e not C++, you write: A: /****************************** * THIS IS THE EASIEST * METHOD OF GENERATING * PRIME NUMBERS USING C * MADE BY: githambo@gmail.com

*******************************/ #include #include int main() { int i,j,h,n; printf("Start:\a\n"); scanf("%d",&n); printf("End?\n\a"); scanf("%d",&h); for(in;i<h;i++) { for(j2;j<i;j++) { if(i%j0) break; }if(ij) printf("%d\t",j); } return 0; }

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

#include<iostream>

#include<cmath>

unsigned is_prime (const unsigned num) {

if (num<2) return false; // 0 and 1 are not prime

if ((num%2)==0) return num==2; // 2 is the only even prime

unsigned max_factor {(unsigned) sqrt ((double) num) + 1}; // test all odd factors >=3

for (unsigned factor {3}; factor<max; ++factor)

if ((num%factor)==0) return false;

return true; // the number is prime!

}

unsigned next_prime (unsigned num) {

while (!is_prime(++num));

return num;

}

int main() {

std::cout<<"2-digit Twin Primes\n\n";

unsigned a {2}, b {3};

while (b<100) {

if ((b-a)==2) std::cout<<"Prime twins: "<< a << " & " << b << '\n';

a=b;

b=next_prime (++b);

}

std::cout<<std::endl;

}

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program to print all two digit twin prime numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write a c program to generate all prime numbers in the given range?

look man that would take alot &gt;&gt;&gt; Ill give you the way =============================================================================== this answer i write it now on net ! i read about that befor in it uni where i study i will chick out the answer and re write it best wishes 2024


What BASIC program can compute and display all prime numbers from 1 to 40?

PRINT 2,3,5,7,11,13,17,19,23,29,31,37


Write a c program to find out the prime numbers between 1 to 500?

Here is a simple program to generate prime numbers upto a given specific number /*Prime No. from 1 to 50*/ /*By-Himanshu Rathee*/ #include&lt;stdio.h&gt; #include&lt;conio.h&gt; void main() { int i,j,n; clrscr(); printf(" Enter the number upto which we have to find the prime number: "); scanf("%d",&amp;n); printf("\n"); for(i=2;i&lt;=n;i++) { for(j=2;j&lt;=i-1;j++) if(i%j==0) break; /*Number is divisble by some other number. So break out*/ if(i==j) printf("\t%d",i); /*Number was divisible by itself (that is, i was same as j)*/ } /*Continue loop upto nth number*/ getch(); }


How do you write a program in lisp to find if a number is prime or not?

(defun prime (num) (if (&lt; 2 num) (do ((dividend 2 (1 + dividend)) (chk-to (sqrt num))) ((equal (rem num dividend) 0)) (when (&lt;= chk-to dividend) (return t))) t))


How do you print non-prime numbers in java?

Loop through some numbers - for example, 2 through 100 - and check each one whether it is a prime number (write a second loop to test whether it is divisible by any number between 2 and the number minus 1). If, in this second loop, you find a factor that is greater than 1 and less than the number, it is not a prime, and you can print it out.

Related questions

What is the greatest six digit number you can write if each digit must be different and no digit may be prime?

Its impossible, there are only 5 single digit numbers that are not prime


How do you write a VBnet program to find the prime numbers between 100 to 200?

VBnet program to find the prime numbers between 100 to 200?


How many two digit prime numbers are there?

There are 21 two-digit prime numbers.


How do you write a program in objective c numbers 1-100 prime numbers?

fdsgfhgdfhgdf


Program for print prime all number from 1 to 100 in foxpro?

Prime numbers are numbers that are only divisible by themselves and the number 1. You can write a program to print all prime numbers from 1 to 100 in FoxPro.


Write a C program to find the sum of all prime numbers?

Since there is an infinite set of prime numbers the answer would be infinity.


Write a c program to print prime numbers from 1 to 10000 that has an unit digit which is multiple of 3?

This is a homework question and does not deserve an answer because you will learn nothing other than being lazy.


How many three digit numbers have odd prime number as 1st digit A prime number as 2nd digit and an odd number as 3rd digit?

There are 17 such numbers.


What are all of the one-digit prime numbers?

2, 3, 5, and 7 are the only one-digit prime numbers.


What is the largest two-digit number that is prime and has prime numbers for both of its digits?

73 is the largest two-digit number that is prime and has prime numbers for both of its digits.


How many two digit prime numbers have a units digit of 7 and what are the prime numbers?

17, 37, 47, 67, 97


What is the largest 3 digit prime numbers?

997 is the largest 3-digit prime number.