Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void main(void)
  4. {
  5.  
  6. float markka;
  7.  
  8. printf ("Anna markkamäärä");
  9. scanf ("%f", &markka);
  10.  
  11. float eurot = markka/5.94573;
  12.  
  13. printf ("Euromäärä: %f", eurot);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement