Trong bài này, chúng ta sẽ hiểu cách in một số nguyên trong Java. Đảo ngược của một số được tính bằng cách sử dụng một vòng lặp và toán tử số học% và /.
Dưới đây là một minh chứng về điều tương tự -
Đầu vào
Giả sử đầu vào của chúng tôi là -
The number : 123456
Đầu ra
Đầu ra mong muốn sẽ là -
The result is 654321
Thuật toán
Step 1 - START Step 2 - Declare three integer values namely my_input, reverse_input and remainder. Step 3 - Read the required values from the user/ define the values Step 4 – Run a while loop Step 5- Use modulus of 10 and get remainder for ‘my_remainder’ . Step 6- Multiply ‘reverse_input’ with 10, and add to ‘my_remainder’, and make that the current ‘reverse_input’. Step 7- Divide ‘my_input’ by 10, and make that the current ‘my_input. Step 8- Display the result Step 9- 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ử trực tiếp ví dụ này trong công cụ nền tảng mã hóa của chúng tôi .
import java.util.Scanner; public class ReverseNumber{ public static void main(String[] args){ int my_input , reverse_input, my_remainder; reverse_input = 0; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.print("Enter the number : "); my_input = my_scanner.nextInt(); while(my_input != 0){ my_remainder = my_input % 10; reverse_input = reverse_input * 10 + my_remainder; my_input = my_input/10; } System.out.println("The reverse value of the given input is: " + reverse_input); } }
Đầu ra
Required packages have been imported A reader object has been defined Enter the number : 123456 The reverse value of the given input is: 654321
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 ReverseNumber{ public static void main(String[] args){ int my_input , reverse_input; my_input = 123456; reverse_input = 0; System.out.println("The number is defined as " +my_input); while(my_input != 0){ int remainder = my_input % 10; reverse_input = reverse_input * 10 + remainder; my_input = my_input/10; } System.out.println("The reverse value of the given input is: " + reverse_input); } }
Đầu ra
The number is defined as 123456 The reverse value of the given input is: 654321