home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug150.arc / C-STUFF2.LBR / MPH.C < prev    next >
Text File  |  1979-12-31  |  384b  |  16 lines

  1.  
  2. #include "stdio"
  3.  
  4. main()                /* figure distance traveled */
  5.  
  6.     {
  7.     int mph, time, wait;
  8.  
  9.     printf("Enter your speed in miles per hour: ");
  10.     scanf("%d",&mph);
  11.     printf("Enter the number of hours: ");
  12.     scanf("%d",&time);
  13.     printf("Miles traveled = %d  \n", mph * time);
  14.     scanf("%d",&wait);
  15.     }
  16.