Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
99
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. c.mclaughlan@jacobs-university.de
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. int main()
  11. {
  12. int cm;
  13.  
  14. scanf("%d", &cm);
  15.  
  16. float new = convert(cm);
  17.  
  18. printf("%f", new);
  19.  
  20. return 0;
  21. }
  22.  
  23. float convert(int cm) {
  24. float km = cm / 1000.0;
  25. printf("km=%f\n", km);
  26. return km;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement