Advertisement
Guest User

Untitled

a guest
May 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. public class SeaCreature
  2. {
  3. public static void main(String[]args)
  4. {
  5. draw();
  6. }
  7. public static void draw()
  8. {
  9. System.out.println(" _____________________ o o");
  10. System.out.println(" |\\ / \\ o o");
  11. System.out.println(" | \\ / O O\\ o");
  12. System.out.println(" | \\ / .--. \\ o");
  13. System.out.println(" | / .--. 0 \\ o");
  14. System.out.println(" | /\\ /");
  15. System.out.println(" | / \\ /");
  16. System.out.println(" | / \\_______________________/");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement