answersLogoWhite

0


Best Answer

2 3 5 7 11 13 17 19 23 29 31 37 41 43 47

User Avatar

Wiki User

βˆ™ 10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The prime s number 0 to 50?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What number is over 1 and that is not a prime number?

No numbers, because 2 is the smallest prime number 0 and 1 aren't prime #'s.


What does the number 50 billion look like?

9 0's so50,000,000,000


Is 118 a prime number or a composite number?

composite. prime #s can only be divided by 1 and itself


How do you write a java program to check a number is twisted prime or not?

public class TwistedPrime { public static void main(int n)//Enter a number { int num,s=0,c=0,d; num=n; while(n>0) { d=n%10; s=s*10+d; n=n/10; { for(int i=1;i<s;i++) { if(s%i==0) c++; } } } if(c==1) System.out.print("Number is Twisted Prime"); else System.out.print("Number is not T.P."); } }


What are composite 's?

A prime number has only 2 factors which are 1 and itself. Composite numbers are everything else except 1 and 0. 1 and 0 are neither prime, nor composite.


How can you Write a suitable pseudo code to check whether a number is prime or not?

Begin Read num for(i=2; i<num; i++) if(num%2==0) then print "the number is not a prime no."; else if print "the number is prime"; end if Stop


Is 121 a a prime number?

121 is not a prime number because it has more factors than 1 and itself.


What is the whole numbers less than 50 have prime factorizations composed of a prime squared?

for s being prime find all s so that s² < 50 { 4 , 25 , 49...and one more }


What input you will give to write a basic program to find prime numbers between 1 to 100 using if and else?

#include <iostream> void main() { using namespace std; int num, rem, sum=0; //Declaring variables cout<<"Enter a number :"<<endl; cin>>num; //Loop to calculate the sum of the digits of the given number. while(num!=0) { rem=num%10; num=num/10; sum=sum+rem; } cout<<"Sum of the digits is "<<sum<<endl; cin.get(); }


What is 50's prime factorization?

2 x 5 x 5 = 50


What are the release dates for Prime 9 - 2009 Players of the 50's 4-2?

Prime 9 - 2009 Players of the 50's 4-2 was released on: USA: 2011


What is a simple java program to find prime numbers?

/** * @author BHARGAV MODI * */ class prime { public static void main(String p[]) { int i,j,s=0,d=0; for(i=1;i<100;i++) { s=0; for(j=1;j<=i;j++) { if(i%j==0) s=s+1; } if(s==2) { System.out.println(i); d=d+1; } } System.out.println("the no. of prime no. are = "+d); } }