1determine how many prime numbers there are from 101 to 200 #include<stdio.h> #include<math.h> int main(){ int i,j,k; for(i = 101;i<=200;i++){ j = sqrt(i); for(k=2;k<=j;k++){ if(i%k == 0){ break; } else{ printf