#include<stdio.h>int main() { int i; int count = 0; for (i = 0; i <=100 ; i++); { if (i % 10 == 9) { count++; } if (i / 10 == 9) { count++; } } printf("the count is %d\n", count); system("pause"); }