Advertisement
silver2row

Bronson

Oct 5th, 2019
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Gary J. Bronson 2012, "C++ for Engineers and Scientists."
  2.  
  3. 7. (Physics) a. The weight of an object on Earth is a measurement of the downward force on
  4. the object caused by Earth’s gravity. The formula for this force is determined by using
  5. Newton’s Second Law:
  6.  
  7. F = M × A e
  8.  
  9. F is the object’s weight.
  10. M is the object’s mass.
  11. A e is the acceleration caused by Earth’s gravity (32.2 ft/sec2 = 9.82 m/s2).
  12.  
  13. Given this information, design, write, compile, and run a C++ program to calculate the weight
  14. in lbf of a person having a mass of 4 lbm. Verify the result produced by your program with a
  15. hand calculation.
  16.  
  17. b. After verifying that your program is working correctly, use it to determine the weight, on
  18. Earth, of a person having a mass of 3.2 lbm.
  19.  
  20. ...
  21.  
  22. set_ from Freenode!
  23.  
  24. I am working on this book for fun. Fun! But...in this exercise 7a, I have come across a miscalculation or
  25. there is some type of error in the book, i.e. a typo.
  26.  
  27. Do you think you can figure this out?
  28.  
  29. set_
  30.  
  31. P.S. Please reply when you have time. I am sure this is easy for someone that already understands
  32. physics but I think I need another value to proceed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement