Guest User

Untitled

a guest
Jun 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Chess {
  2. public static void main (String[] args){
  3. for(int i = 1; i <= 8; i++){
  4. String zeile = "|";
  5. for(int j = 1; j <= 8; j++){
  6. zeile = zeile + "O|";
  7. }
  8. }
  9. System.out.println(zeile);
  10. }
  11. }
Add Comment
Please, Sign In to add comment