Advertisement
mariotourist

Untitled

Dec 2nd, 2021
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. //Source.cpp
  2. #include "Payment.h"
  3. #include "Money1.h"
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.  
  9.     SetConsoleCP(1251);
  10.     SetConsoleOutputCP(1251);
  11.     Payment emp1("Rogov", 100000, 2019, 10, 13, 20, 30);
  12.     emp1.show();
  13.     //cout << emp1;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement