Trong bài này, chúng ta sẽ hiểu cách in một số nguyên trong Java. Nó sử dụng kiểu dữ liệu int. Kiểu dữ liệu int là một số nguyên bổ sung 32-bit có dấu của hai. Giá trị nhỏ nhất là 2,147,483,648 (-2 ^ 31) và giá trị lớn nhất là 2,147,483,647 (bao gồm) (2 ^ 31 -1). Số nguyên thường được sử dụng làm kiểu dữ liệu mặc định cho các giá trị tích phân trừ khi có mối lo ngại về bộ nhớ. Giá trị mặc định là 0.
Đầu vào
Giả sử đầu vào của chúng tôi là
Enter an integer: 45
Đầu ra
Đầu ra mong muốn sẽ là
The integer is: 45
Thuật toán
Step 1- START Step 2- Prompt the user to enter an integer value/ define the integer value in a variable Step 3- Read the value Step 4- Display it on the console Step 5- STOP
Ví dụ 1
Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử ví dụ này trực tiếp trong công cụ nền tảng mã hóa của chúng tôi .
import java.util.Scanner; public class PrintInteger { public static void main(String[] args) { Scanner reader = new Scanner(System.in); System.out.println("Required packages have been imported"); System.out.print("A reader object has been defined "); System.out.print("Enter an integer: "); int number = reader.nextInt(); System.out.print("The nextInt method is used to read the integer value "); System.out.println("The integer is: " + number); } }
Đầu ra
Required packages have been imported A reader object has been defined Enter an integer: 45 The nextInt method is used to read the integer value The integer is: 45
Ví dụ 2
Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.
public class PrintInteger { public static void main(String[] args) { int number; number = 45; System.out.print("The value for integer has been defined "); System.out.println("The integer value is: " + number); } }
Đầu ra
The value for integer has been defined The integer is: 45