Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Q1
  2. */
  3. public float HW5A( )
  4. {
  5. return (6*5+12)/9;
  6. }
  7. //---------------------------------------------------------------------------
  8. /* To Avoid confusion see question in PDF Questions.
  9. Q2.
  10. */
  11.  
  12. public float HW5B( float ounces )
  13. {
  14. float kilograms;
  15. kilograms = ounces * 0.0283;
  16. return kilograms ;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement