Trong bài này, chúng ta sẽ hiểu cách đếm số chữ số trong một số nguyên. Các chữ số trong một số nguyên được đếm bằng cách sử dụng một vòng lặp và một bộ đếm.
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à -
Number : 15161718
Đầu ra
Đầu ra mong muốn sẽ là -
The result is : 8
Thuật toán
Step 1 - START Step 2 – Declare two integer values namely my_count and my_input. Step 3 - Read the required values from the user/ define the values Step 4 – Using a for loop, divide the input value by 10 until the number is reduced to its lowest possible value. Increment the counter value each time. Step 5- Display the counter value as result Step 6- 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 Main { public static void main(String[] args) { int my_count , my_input; my_count = 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(); for (; my_input != 0; my_input /= 10, ++my_count) { } System.out.println("The number of digits in the given input is: " + my_count); } }
Đầu ra
Required packages have been imported A reader object has been defined Enter the number : 15161718 The number of digits in the given input is : 8
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 Main { public static void main(String[] args) { int my_count = 0, my_input; my_count = 0; my_input = 15161718; System.out.println("The number is defined as " +my_input); for (; my_input != 0; my_input /= 10, ++my_count) { } System.out.println("The number of digits in the given input is: " + my_count); } }
Đầu ra
The number is defined as 15161718 The number of digits in the given input is: 8