Advertisement
Goy288

Stewie2.java (no for loop and fused methods)

Jan 7th, 2019 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. public class Stewie2 {
  2.    public static void main(String[] args) {
  3.       rowForward();
  4.       rowVictoryPlusBackward();
  5.       rowVictoryPlusBackward();
  6.       rowVictoryPlusBackward();
  7.       rowVictoryPlusBackward();
  8.       rowVictoryPlusBackward();
  9.    }
  10.    public static void rowForward() {
  11.       System.out.println("//////////////////////");
  12.    }
  13.    public static void rowVictoryPlusBackward() {
  14.       System.out.println("|| Victory is mine! ||");
  15.       System.out.println("\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\");
  16.    }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement