상세 컨텐츠

본문 제목

자바 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++;
        }
    }
}