Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void ausgeben()
  2. {
  3. for (int i=0;i<array.length;i++)
  4. {
  5. for (int j=0;j<array[i].length;j++)
  6. {
  7. if (array[i][j]=='*')
  8. {
  9. System.out.print(array[i][j]);
  10. }
  11. else
  12. System.out.print(" ");
  13. }
  14. System.out.println();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement