1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <stdio.h> #include <stdlib.h> int šp (int število, int prafaktor) { int vrni = 0; while (!(število % prafaktor)) { vrni++; število /= prafaktor; } return vrni; } int main (void) { int število = 0; for (int i = 1; i < 100; i++) število += šp(i, 7); printf("%d\n", število); }