자바 1 ~ 10,000 까지 8이라는 숫자가 총 몇번 나오는가?
by 코딩초보 신성민 2020. 9. 24. 14:51
int result = 0; for ( int i = 1; i<=10000; i++) { String str = i + ""; for ( int j = 0; j < str.length(); j++ ) { if ( str.charAt(j) == '8' ) { reuslt++; } } }