Guest User

Untitled

a guest
Sep 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /*
  2. CH-230-A
  3. a3_p3.c
  4. Christopher Mclaughlan
  5. */
  6.  
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11. int cm;
  12.  
  13. scanf("%d", &cm);
  14.  
  15. float new = convert(cm);
  16.  
  17. printf("%f", new);
  18.  
  19. return 0;
  20. }
  21.  
  22. float convert(int cm) {
  23. float km = cm / 1000.0;
  24. printf("km=%f\n", km);
  25. return km;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment