Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

정수의 자릿수를 계산하는 Java 프로그램

<시간/>

이 기사에서는 정수의 자릿수를 계산하는 방법을 이해합니다. 정수의 숫자는 루프와 카운터를 사용하여 계산됩니다.

아래는 동일한 데모입니다 -

입력

입력이 -

라고 가정합니다.
Number : 15161718

출력

원하는 출력은 -

The result is : 8

알고리즘

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

예시 1

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 정수의 자릿수를 계산하는 Java 프로그램 .

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);
   }
}

출력

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

예시 2

여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.

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);
   }
}

출력

The number is defined as 15161718
The number of digits in the given input is: 8