The smallest number that divide in 13, 15, and 17 with C

1 Answer

0 votes
#include <stdio.h>

int main() {
    int a = 13, b = 15, c = 17;

    int num = a * b * c;

    printf("The smallest number that divides 13, 15, and 17 is: %d\n", num);
}



/*
run:

The smallest number that divides 13, 15, and 17 is: 3315

*/

 



answered Nov 5, 2025 by avibootz
...