문제
풀이
if(ch[i] == 0){ answer++; for(int j=i;j<=n;j=j+i){ ch[j] = 1; }
i 의 배수에 값을 1넣어주고, ch[i] == 0 일때, answer++을 해준다.
ch[i] == 0
answer++
소스코드