Guest User

Untitled

a guest
Jan 22nd, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. for(int i = 1; i <= 16; i++)
  2. {
  3. if(i == 9)
  4. cout << endl;
  5.  
  6. if(cardArr[i].state == DOWN)
  7. {
  8. //cout << draw(i);
  9. cout << "+---+ " << endl;
  10. cout << "| " << i << "| " << endl;
  11. cout << "| | " << endl;
  12. cout << "| | " << endl;
  13. cout << "+---+ ";
  14. }
  15. }
Add Comment
Please, Sign In to add comment