Question__4

PHOTO EMBED

Tue Mar 28 2023 21:38:54 GMT+0000 (Coordinated Universal Time)

Saved by @Mohamedshariif #java

 //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(" \\________/");
        
        }
}
content_copyCOPY