17 lines
311 B
C
17 lines
311 B
C
#include <stdio.h>
|
|
#include "display.h"
|
|
|
|
void screenDisplay( unsigned short int **tab,int size)
|
|
{
|
|
char element[7] ={' ','#','S','.','*','@','+'} ;
|
|
for(int i=0;i<size;++i)
|
|
{
|
|
for(int j=0;j<size;++j)
|
|
{
|
|
printf("%c ",element[tab[i][j]]);
|
|
}
|
|
puts("");
|
|
}
|
|
|
|
}
|