Guest User

Untitled

a guest
Feb 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. double quanity, result;
  2. const double USD = 0.81;
  3.  
  4. result = USD * quanity;
  5.  
  6. printf("Please input a number.n");
  7. scanf("%f", &quanity);
  8. printf("%fn", result);
  9.  
  10. return 0;
Add Comment
Please, Sign In to add comment