반응형

C언어 배열안에 3의 배수이면서 4의 배수인 수의 개수

 

Drainage and common multiple - Number of multiples of 3 and 4 in list

 

1
2
3
4
5
6
7
8
9
10
11
/* Drainage and common multiple */
/* Number of multiples of 3 and 4 in list */
#include <stdio.h>
 
int main() {
    int list[] = { 1751422664028485472108144 };
    int count = 0;
    int len = sizeof(list)/sizeof(int);
    for (int i = 0; i < len; i++if ((list[i] % 3 + list[i] % 4== 0) count++;
    printf("Number of multiples of 3 and 4 in list: %d\n", count);
}
cs

 

반응형