//Rewrite the above program by using static methods.
// static method help you to make your code more than one time.
public static void main(String[] args) {
top();
middle();
lower();
top();
middle();
lower();
}
public static void top() {
System.out.println(" ________");
System.out.println(" / \\");
System.out.println("/ \\");
}
public static void middle() {
System.out.println("-\"-\'-\"-\'-\"-");
}
public static void lower() {
System.out.println("\\ /");
System.out.println(" \\________/");
}
}