java

Java program to print an integer

Java program to print an integer value

In this tutorial, we discuss the simple concept of Write a Java program to print an integer

problem – How to write a program to print an integer in Java?

input- output

In this article, we are going to learn How to write a program to print an integer in Java language

The following shows two different ways to How to write a program to print an integer and there is an example given to each

The first Example is done by declared and initialized variable

the second Example is done through the user entered the value of the variable

Java code to print an integer

Program 1

//program to print an integer in Java
class PrintInteger1{//imported java.util.Scanner package
public static void main(String args[]){
int num; //variable declaration 
num=56;  //initialization

System.out.print("You declared : "+num);
}
}

When the above code is executed it produces the following output

you declared: 56

In this program

  • Integer variable num is declared
  • Integer variable num is initialized
  • Then, the program has displayed the output (value of variable num ) using  System.out.print()

 

Java code print an integer (Entered by user)

Program 2

//Program to print an integer in Java
import java.util.Scanner;  //imported java.util.Scanner package
class PrintInteger{
public static void main(String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner instance for receive input 
//from the user - input from keyboard
System.out.print("Enter the integer to print: ");
int num=scan.nextInt();

//reads the integer value from the user
//input from keyword

System.out.print("You entered : "+num);
}
}

When the above code is executed it produces the following output

Enter the integer to print:34
you entered: 34

Method

  1. The program requires input from the user
  2. Then the user enters the input value using the keyboard
  3. The program will read the input using scanner class and stores the num variable
  4. Then, the program Display the value which  is in variable num using System.out.print()

 

Similar post

C++ program to print an integer value

C  program to print an integer value

Python program to print an integer value

 

Suggested for you

Data type and Variable in Java

The operator in Java language

Java hello world

 

Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.