Created
December 5, 2015 16:36
-
-
Save Yur-ok/41235eb57985be33a35b to your computer and use it in GitHub Desktop.
Map of battle field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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