home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / tutorial / 1_10_1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-27  |  325 b   |  20 lines

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     float e_weight, m_weight;
  6.     
  7.     printf("Enter your weight: ");
  8.     scanf("%f", &e_weight);
  9.     
  10.     m_weight = convert_e_to_m( e_weight );
  11.     
  12.     printf("Your effective weight on the moon would be: %f units.", m_weight);
  13. }
  14.  
  15. convert_e_to_m( float weight )
  16. {
  17.     return weight * 0.17;
  18. }
  19.  
  20.