문제
풀이
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 숫자 입력
int n = sc.nextInt();
// 박수 친 횟수
int cnt = 0;
for(int i=1; i<n; i++) {
String str = String.valueOf(i);
for(int j=0; j<str.length(); j++) {
if(str.charAt(j) == '3' || str.charAt(j) == '6' || str.charAt(j) == '9') {
cnt++;
}
}
}
System.out.print(cnt);
}
}
'코딩테스트' 카테고리의 다른 글
[백준/JAVA] 2884 알람 시계 (0) | 2021.04.27 |
---|---|
[구름LEVEL] 3차원 배열 (0) | 2021.03.15 |
[구름LEVEL] 두부 자르기 (1) | 2021.03.13 |
[구름LEVEL] 약수의 합 (0) | 2021.03.13 |