문제 10개의 정수를 입력받아 3의 배수의 개수와 5의 배수의 개수를 각각 출력하는 프로그램을 작성하시오. 입력 예 10 15 36 99 100 19 46 88 87 13 출력 예 Multiples of 3 : 4 Multiples of 5 : 3 정답 C언어 #include int main() { int num; int three = 0; int five = 0; for (int i = 0; i < 10; i++) { scanf("%d", &num); if (num % 3 == 0) { three++; } if (num % 5 == 0) { five++; } } printf("Multiples of 3 : %d \n", three); printf("Multiples of 5 : %d \n", five)..