자바 자릿수1 [자바] 정수를 입력받고 몇개의 자릿수 자리수인지 출력하시오 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 입출력예제 입력예제1 10000 출력예제1 5 입력예제2 12345678 출력예제2 8 답안코드 더보기 import java.util.*; public class Main { public static void main(String[] args) { Scanner in =new Scanner(System.in); int count=0; int input = in.nextInt(); while(input>0) { input/=10; count++; } System.out.println(count); } } 더 많은 자바코드가 보고 싶다면? https://chuinggun.tistory.com/category/%EC%9E%90%EB%B0%94/%.. 2023. 1. 6. 이전 1 다음