MeehoweCK

Untitled

Nov 12th, 2020
855
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. int main()
  2. {
  3.     cout << "Podaj nazwy dwoch grajacych druzyn:\n";
  4.     cout << "\tdruzyna gospodarzy: ";
  5.     string a, b;
  6.     getline(cin, a);
  7.     cout << "\tdruzyna gosci: ";
  8.     getline(cin, b);
  9.  
  10.     CSet nowy_set(a, b);
  11.     nowy_set.start();
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment