Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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'
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement