DiaxPlayer

rysowanie.h

Oct 24th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. void rysowanie(int ** tablica,char wypelnienie)
  2. {
  3.     for(int i=0; i<7; i++)
  4.     {
  5.         for(int j=0; j<7; j++)
  6.             if(tablica[i][j])
  7.                 cout <<wypelnienie;
  8.             else
  9.                 cout <<" ";
  10.         cout <<'\n';
  11.     }
  12. }
Add Comment
Please, Sign In to add comment