Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 7, 2014 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/a6a1c36db370c153e829 to your computer and use it in GitHub Desktop.
Save Fhernd/a6a1c36db370c153e829 to your computer and use it in GitHub Desktop.
Programa para dibujar un tablero de damas usando asteriscos.
import java.util.Scanner;
// Declaración de clase
public class TableroDamas
{
// El método 'main' inicia la ejecución de la aplicación en Java
public static void main( String[] args )
{
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.exit(0);
} // Fin del método 'main'
}
@Maldo601
Copy link

Nice Joke. -.-

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment