KristianIvanov00

FourthTask

Feb 24th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. struct Distance
  5. {
  6. unsigned inches;
  7. unsigned feet;
  8. };
  9. void PrintD(Distance d)
  10. {
  11. std::cout << d.feet << '\'' << d.inches << '"';
  12. }
  13. int main()
  14. {
  15. Distance d = { 10, 5 };
  16. PrintD(d);
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment