Advertisement
Flaron

ProgMasters_SpaceShip_2_TTomi

Nov 6th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package garbage;
  2.  
  3. public class Garbage {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. String s = "..........\n..........\n..........\n.......x..\n..........\n..........\n";
  8. System.out.println(s);
  9. int x = 0;
  10. int y = 5;
  11. int i = 0;
  12. while (s.charAt(i)!='x' && i < s.length()){
  13. x++;
  14. if (s.charAt(i)=='\n'){
  15. y--;
  16. x = 0;
  17. }
  18. i++;
  19. }
  20. System.out.println("[" + x + ", " + y + "]");
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement