How to Read and Print an Integer value in Java

Configurare noua (How To)

Situatie

In below program, the syntax and procedures to take the integer as input from the user is shown in Java language. Steps:

  1. The user enters an integer value when asked.
  2. This value is taken from the user with the help of nextInt() method of Scanner Class. The nextInt() method, in Java, reads the next integer value from the console into the specified variable. Syntax:
  3. variableOfIntType = ScannerObject.nextInt();
  4. where variableOfIntType is the variable in which the input value is to be stored. And ScannerObject is the beforehand created object of the Scanner class.
    1. This entered value is now stored in the variableOfIntType.
    2. Now to print this value, System.out.println() or System.out.print() method is used. The System.out.println() method, in Java, prints the value passed as the parameter to it, on the console screen and the changes the cursor to the next line on the console. Whereas System.out.print() method, in Java, prints the value passed as the parameter to it, on the console screen and the cursor remains on the next character of the last printed character on the console.

Backup

// Java program to take an integer
// as input and print it
import java.io.*;
import java.util.Scanner;
class GFG {
    public static void main(String[] args)
    {
        // Declare the variables
        int num;
        // Input the integer
        System.out.println("Enter the integer: ");
        // Create Scanner object
        Scanner s = new Scanner(System.in);
        // Read the next integer from the screen
        num = s.nextInt();
        // Display the integer
        System.out.println("Entered integer is: "
                           + num);
    }
}

Output:

Enter the integer: 10
Entered integer is: 10

Solutie

Tip solutie

Permanent

Voteaza

(5 din 11 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?