Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/02/2010, 10:59
devshared
 
Fecha de Ingreso: enero-2010
Mensajes: 25
Antigüedad: 15 años
Puntos: 0
Respuesta: impresion caracteres

Código C:
Ver original
  1. #include<stdio.h>
  2. void TableroJuego(){
  3.     printf("_|_|_ \n");
  4.     printf("_|_|_\n");
  5.     printf(" | |  \n");
  6. }
  7.  
  8. int main(){
  9.  
  10.           TableroJuego();
  11.           getchar();getchar();
  12.          
  13.  
  14.           return 0;
  15.  
  16. }