Primary number

Primary number

write a program to find the 100th or nth primary number?

View Answers

March 20, 2012 at 3:28 PM

import java.util.*;
class PrimeNumber{

    public static void main(String a[]) {
        Scanner input=new Scanner(System.in);
        System.out.print("Enter N:");
        int n=input.nextInt();
      find(n);
    }
      static void find(int n){
        int i=0,count=2;
        if(n==1)
        {
            return;
        }
        if(n==2)
        {
            return;
        }

        while(true)
        {
            for(int j=2;j<=i/2;j++){
            if(i%j==0)
            break;
            else if(j==i/2)
            {
            count++;
            }
        }
        if(count==n)
        {
        System.out.println(n+"th prime = "+i);
        break;
        }
        i++;
        }
    }
    }









Related Tutorials/Questions & Answers:
Primary number
Primary number  write a program to find the 100th or nth primary number?   import java.util.*; class PrimeNumber{ public static void main(String a[]) { Scanner input=new Scanner(System.in
Primary number
Primary number  write a program to find the 100th or nth primary number?   import java.util.*; class PrimeNumber{ public static void main(String a[]) { Scanner input=new Scanner(System.in
Advertisements
SQL Auto increment Primary Key
SQL Auto increment Primary Key       SQL Auto increment Primary Key is used to allow a unique number to be generated when a new record is inserted into a table
primary storage
primary storage  Which of the following is not true for the primary storage? a) It is the part of CPU, b) It allows very fast access of data, c) It is relatively more expensive then other storage devices, d) Can be removed
primary key and unique key
primary key and unique key  Whats is mean by primary key and unique key
ModuleNotFoundError: No module named 'primary'
ModuleNotFoundError: No module named 'primary'  Hi, My Python... 'primary' How to remove the ModuleNotFoundError: No module named 'primary... to install padas library. You can install primary python with following command
ModuleNotFoundError: No module named 'primary'
ModuleNotFoundError: No module named 'primary'  Hi, My Python... 'primary' How to remove the ModuleNotFoundError: No module named 'primary... to install padas library. You can install primary python with following command
What is a "primary key"?
What is a "primary key"?  What is a "primary key"?   Hi, Here is the answer,ADS_TO_REPLACE_1 A primary key is used to uniquely identify...). A primary key can consist of one or more fields on a table. When multiple fields
primary key and unique key
primary key and unique key  hello, What's the difference between a primary key and a unique key?   hii,ADS_TO_REPLACE_1 Unique key.... Primary key: columns entry of duplicate as well as null values are restricted
composinte primary key in hibernate
composinte primary key in hibernate  I am facing following problem, Inside the database(mssql), i have created a table without primary key... primary key with all the columns of the table and hibernate s/w has created two pojo
Automatic primary Generation in Hibernate - Hibernate
Automatic primary Generation in Hibernate   Hi, Ow primary key is generated automatically in hibernate.give me sample code.Thank u
hibernate annotations with composite primary key
hibernate annotations with composite primary key  I want to know how to use hibernate annotations in case of composite primary key in one table. I tried like this, I have created a table without primary key. By default mssql has
Adding A Primary Key to an Existing Table
Adding A Primary Key to an Existing Table   Been trying to add a primary key to a MySQL table using Java for two days with no success. I'm new...(); alterStatement.executeUpdate("ALTER TABLE machine ADD PRIMARY
Create primary key using hibernate
Create primary key using hibernate  How to create primary key using hibernate?   The id element describes the primary key for the persistent class and how the key value is generated. ADS_TO_REPLACE_1   
SQL Alter Table Primary Key
SQL Alter Table Primary Key       Alter a Table Primary Key in SQL modifies the existing table and adds a primary key. Create Table Stu_TableADS_TO_REPLACE_1 SQL
changing primary key of parent table
changing primary key of parent table  I want to change one primary key from a table where primary key is auto created? How can I do that? I have tried UPDATE person SET personid=3494 WHERE personid=8483; and i get the following
SQL PRIMARY KEY Constraint
SQL PRIMARY KEY Constraint       The PRIMARY KEY constraint is used to uniquely identifies each record in a database table. The Primary keys in a table contains a unique
JDBC insert that returns primary key
JDBC insert that returns primary key  How to write code for jdbc insert that returns primary key? Help me fast Thanks   Hi, Following code can be used: //Add record into database String queryInsert = "insert
SQL Primary Key
SQL Primary Key       The Primary Key in SQL is used to uniquely identifies each records in a database table. The Primary Key of the Table does not include NULL values
Mysql add primary key
Mysql add primary key       Mysql add Primary Key is used to add primary key on the column... of this tutorial illustrate an example from 'Mysql Add Primary Key'. To understand
How to create primary key using hibernate?
How to create primary key using hibernate?  Hi, How to create primary key using hibernate? Thanks
Difference between not null and primary key in mysql
Difference between not null and primary key in mysql  Explain not null and primary key in mysql
buzz number
buzz number  buzz number
Mysql Alter Table Primary Key
Mysql Alter Table Primary Key       Mysql Alter Table Primary Key is used to remove the primary key from the table and add primary key to the existing other column of table
SQL PRIMARY KEY Constraint
SQL PRIMARY KEY Constraint       The PRIMARY KEY constraint is used to uniquely identifies each record in a database table. The Primary keys in a table contains
query regarding auto increment primary key
query regarding auto increment primary key  i want to use s1,s2.... as my auto increment primary key.cant i do this in mysql
prime number
prime number  get one number and check the number prime or not using if statement   Java Check Prime Number
ModuleNotFoundError: No module named 'django-primary-filters'
ModuleNotFoundError: No module named 'django-primary-filters'  Hi...: No module named 'django-primary-filters' How to remove the ModuleNotFoundError: No module named 'django-primary-filters' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-primary-slug'
ModuleNotFoundError: No module named 'django-primary-slug'  Hi, My... named 'django-primary-slug' How to remove the ModuleNotFoundError: No module named 'django-primary-slug' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-primary-filters'
ModuleNotFoundError: No module named 'django-primary-filters'  Hi...: No module named 'django-primary-filters' How to remove the ModuleNotFoundError: No module named 'django-primary-filters' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-primary-slug'
ModuleNotFoundError: No module named 'django-primary-slug'  Hi, My... named 'django-primary-slug' How to remove the ModuleNotFoundError: No module named 'django-primary-slug' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-uuid-primary-key'
ModuleNotFoundError: No module named 'django-uuid-primary-key'  Hi...: No module named 'django-uuid-primary-key' How to remove the ModuleNotFoundError: No module named 'django-uuid-primary-key' error? Thanks   
the number of parameters
the number of parameters  How do I find out the number of parameters passed into function
Number in array
Number in array  How to write a program to check the number that we are entered from keyboard is in the given array
prime number
prime number  check prime number using if statement   Java Check Prime Number
prime number
prime number  check prime number using if statement   Java Check Prime Number
prime number
prime number  To check a number entered by user is prime or not?   Java check prime number import java.util.*; class CheckPrimeNumber { static boolean isPrime(int number){ boolean isPrime=false
prime number
prime number  could u pls help me out in finding whether a number is a prime number or not?   import java.util.*; class CheckPrimeNumber { static boolean isPrime(int number){ boolean isPrime=false
prime number
prime number  To check a number entered by user is prime
Armstrong number
Armstrong number  I want java program for Armstrong number
prime number
prime number  write a java program for prime number
prime number
prime number  to check wethere given number is prime or not?  ... { static boolean isPrime(int number){ boolean isPrime=false; int i=(int) Math.ceil(Math.sqrt(number)); while (i>1
prime number
prime number  HI!I want a java program that accepts a number from user and displays whether it is a prime number or not using BufferedReader
Mysql Alter Column Primary Key
Mysql Alter Column Primary Key       Mysql Alter Column Primary Key is used to modify table and redefine the Primary Key Column in a table. Understand with ExampleADS
difference between a primary key and a unique key?
difference between a primary key and a unique key?  What's the difference between a primary key and a unique key?   Hi, The column holding the primary key constraint cannot accept null values.whereas column holding
How to auto increment primary key in mysql...
How to auto increment primary key in mysql...  How to auto increment primary key in mysql... and one more thing i need to get auto increment value in front end each time for inserting the value[JSP
Count number of "*"
Count number of "*"  I have this code to count the number of * from a string entered. but I need to find it from an text file. Any idea? import...++; } } System.out.println("The number of vowels in the given sentence
Define sequence generated primary key in hibernate
Define sequence generated primary key in hibernate  How to define sequence generated primary key in hibernate?   Use value "sequence" for class attribute for generator tag. <id column="USER_ID" name="id" type
Number Pyramid
Number Pyramid  Hi Everyone, Can someone help me write the code for the following number pyramid: print... 0 0 0 0 4 ... "); There is 5 spaces in between each number
how tohow to create a table with primary key and foreign keyhow to create a table with primary key and foreign key
how tohow to create a table with primary key and foreign keyhow to create a table with primary key and foreign key  how to create a table using java language with primary key and foreign key   Hi Friend, A foreign

Ads