Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. //Money1.cpp
  2. #include "Money1.h"
  3.  
  4. Money::Money(double sum) {
  5.     m_rub = (int)sum;
  6.     m_kop = (int)((sum - m_rub) * 100);
  7. }
  8.  
  9. double Money::getMoney() {
  10.     return m_rub + (m_kop / 100);
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement