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?

To write a Java program to check if a number is a twisted prime or not, you first need to create a function that checks if the number is prime. You can do this by iterating from 2 to the square root of the number and checking if the number is divisible by any of these values. Once you have verified that the number is prime, you can then check if the number remains prime after twisting its digits (reversing the number and checking if the reversed number is also prime). If both conditions are met, then the number is a twisted prime.


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); } }