728x90
반응형
1. C
#include <stdio.h>
int main()
{
int num,cnt1=0,cnt2=0;
for(int i=0;i<10;i++){
scanf("%d",&num);
if(num%3==0){
cnt1++;
}
if(num%5==0){
cnt2++;
}
}
printf("Multiples of 3 : %d\n",cnt1);
printf("Multiples of 5 : %d",cnt2);
return 0;
}
출처 : www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=182&sca=1070
728x90
반응형
'코테 문제 풀이 > 정올' 카테고리의 다른 글
547 : 반복제어문2 - 자가진단7 (0) | 2020.10.07 |
---|---|
546 : 반복제어문2 - 자가진단6 (0) | 2020.10.07 |
544 : 반복제어문2 - 자가진단4 (0) | 2020.10.07 |
543 : 반복제어문2 - 자가진단3 (0) | 2020.10.07 |
542 : 반복제어문2 - 자가진단2 (0) | 2020.10.07 |