Computer Science, asked by contact3684, 6 days ago

write java program to print this following pattern​

Attachments:

Answers

Answered by SpandanMukherjee428
0

Answer:

public class Main {

   public static void main(String[] args) {

       System.out.println("  101  ");

       System.out.println(" 21012 ");

       System.out.println("3210123");

       System.out.println(" 21012 ");

       System.out.println("  101  ");

   }

}

Similar questions