blob: 26b975357d2982c95affa4a5e4f665f259877bba (
plain) (
tree)
|
|
#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);
}
|