This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <iostream> | |
| #include <stdlib.h> | |
| #include <string> | |
| using namespace std; | |
| class BankAccount { | |
| private: | |
| int Balance; | |
| static int transaction; | |
| double interestRate; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <iostream> | |
| #include <stdlib.h> // for rand | |
| using namespace std; | |
| class Team { | |
| private: | |
| static int count; | |
| static int count1; | |
| public: |