int count; int x; count = 0; for(x=1; x<=100; x++){ if((x % 7) == 0){ count = count + 1; } } printf("%d\n", count); return(0);