home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / languages / c / c_tutor / GENSCR / DUMBCONV_C < prev    next >
Text File  |  1987-11-21  |  456b  |  19 lines

  1.                                         /* Chapter 3 - Program 9 */
  2. main()
  3. {
  4. int x1,x2,x3;
  5.  
  6.    printf("Centigrade to Farenheit temperature table\n\n");
  7.  
  8.    for(x1 = -2;x1 <= 12;x1 = x1 + 1){
  9.       x3 = 10 * x1;
  10.       x2 = 32 + (x3 * 9)/5;
  11.       printf("  C =%4d   F =%4d  ",x3,x2);
  12.       if (x3 == 0)
  13.          printf(" Freezing point of water");
  14.       if (x3 == 100)
  15.          printf(" Boiling point of water");
  16.       printf("\n");
  17.    }
  18. }
  19.