Me gustaria hacerlo de tamaño mas grande y que se muestre con los respectivos casilleros pless
Código PHP:
#include<stdio.h>
#include<conio.h>
#include <windows.h>
void main()
{
int x, y, n;
randomize();
for(int i=1; i<=9; i++)
{ for(int j=1; j<=9; j++)
{
gotoxy(i, j);
n=random(8)+1;
printf("%d",n);
}
}
getch();
}