Data Type C

#include 
int main(void) 
{
  int i;
  for(i=1; i<=100; ++i)
    printf("%d / 2 is: %f\n", i, (float) i /2);
  return 0;
}