him

Untitled

him
Oct 19th, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. char array[3][3];
  2. for(int i=0; i<3; i++){
  3. cout << endl;
  4. for(int y=0; y < 3; y++)
  5. {
  6. array[i][y]= "AOX"[rand()%3];
  7. cout << array[i][y];
  8. }
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment