Advertisement
Fhernd

TableroDamas.java

Jul 7th, 2014
1,356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. // Declaración de clase
  4. public class TableroDamas
  5. {
  6.     // El método 'main' inicia la ejecución de la aplicación en Java
  7.     public static void main( String[] args )
  8.     {
  9.         System.out.println(" * * * * * * * *");
  10.         System.out.println("  * * * * * * * *");
  11.         System.out.println(" * * * * * * * *");
  12.         System.out.println("  * * * * * * * *");
  13.         System.out.println(" * * * * * * * *");
  14.         System.out.println("  * * * * * * * *");
  15.         System.out.println(" * * * * * * * *");
  16.         System.out.println("  * * * * * * * *");
  17.        
  18.         System.exit(0);
  19.     } // Fin del método 'main'
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement