wheelsmanx

CPS 271 FIRSTDAYCLASSEX_Source

Jan 12th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include "Card.h"
  2.  
  3.  
  4. void main() {
  5.  
  6. Card arr[2];
  7. for (int i = 0; i < 2; i++){
  8. cout << arr[i].getFace() << arr[i].getSuit() << endl;
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment