Others
Maths Puzzle
Logical Reasoning
Number Series
Next three numbers in the series:
4,6,12,18,30,42,60,72,102,108,.
Read Solution (Total 3)
-
- 4, 6, 12, 18, 30, 42, 60, 72, 102, 108, ?, ?, ?
4, 6, 12, 18, 30, 42, 60, 72, 102, 108, 138,150,180
This is series of numbers where preceding and successive numbers are prime numbers.
like
3 and 5 are prime with 4 as middle number.
5 and 7 are prime.... for 6
11 and 13 are prime..for 12
- 10 years agoHelpfull: Yes(3) No(3)
- public class prime
{
static public void main(String[] srgs)
{
int i,j,count;
int a[]=new int[100];
count=0;
int p=0;
int k=60;
for(i=2;i - 7 years agoHelpfull: Yes(0) No(1)
- #include
#include
int main()
{
int n,i,j,a;
printf("Enter the number upto which u want to print prime numn");
scanf("%d",&n);
// printf("the prime numbers are:");
int r=0,s,k,x,y,z[1000];
for(i=1;i - 6 years agoHelpfull: Yes(0) No(0)
Others Other Question