Skip to content

Instantly share code, notes, and snippets.

@Yur-ok
Created December 5, 2015 16:36
Show Gist options
  • Save Yur-ok/41235eb57985be33a35b to your computer and use it in GitHub Desktop.
Save Yur-ok/41235eb57985be33a35b to your computer and use it in GitHub Desktop.
Map of battle field
package Lesson1_frame5;
/**
* Created by Юрий on 05.12.2015.
*/
public class MapOfBattleField {
public static void main(String[] args) {
System.out.println("B B B B B B B B B B");
System.out.println("C B B B C B B B C");
System.out.println(" R B B R R B B B ");
System.out.println("R B R R B B B R R B");
System.out.println("R B B R R B B R R B");
System.out.println(" B B B W W W B B ");
System.out.println("B W B B B B B W W ");
System.out.println("R B R BBB B B B ");
System.out.println("B B B T BEB T B B B");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment