/* Write a program that reads 10 integers and finds the number of inputs between -4 and 20 that are divisible by 5. */ #include int main(){ int num, count=0, i; for(i=0;i<10;i++){ scanf("%d",&num); if(num >= -4 && num <= 20 && num % 5 ==0){ count++; } } if(count>0) printf("The count of inputs between -4 and 20 that are divisible by 5: %d\n", count); else printf("no numbers divisible by 5 between -4 and 20\n"); return 0; }