shape using backslash and quotes.

PHOTO EMBED

Tue Mar 28 2023 15:24:57 GMT+0000 (Coordinated Universal Time)

Saved by @Mohamedshariif #java

write program to display this shape.

  /\ 
 /""\ 
/""""\
\""""/
 \""/ 
  \/  
  
 public static void main(String[] args) {

        System.out.println("  /\\ ");
        System.out.println(" /\"\"\\ ");
        System.out.println("/\"\"\"\"\\");
        System.out.println("\\\"\"\"\"/");
        System.out.println(" \\\"\"/ ");
        System.out.println("  \\/  ");
content_copyCOPY