fork(83) download
  1. #include <iostream>
  2. #include <string>
  3. #include <sstream>
  4. #include <cmath>
  5. using namespace std;
  6.  
  7. class Account
  8. {
  9. class Money
  10. {
  11. long rub;
  12. unsigned char kop;
  13. public:
  14. long whole;
  15.  
  16.  
  17. void read()
  18. {
  19. cin>>whole;
  20.  
  21. };
  22. void display();
  23. } ;
  24.  
  25. public:
  26. string family;
  27. int nomer;
  28. float procent;
  29. Money summa;
  30.  
  31. } ;
  32.  
  33. int main() {
  34. // your code goes here
  35. return 0;
  36. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty