Computer Science, asked by Sunshine56, 9 months ago

Write a Java program for following

Attachments:

Answers

Answered by vk8091624
2

Answer:

Java Code: public class Main { public static void main(String[] args) { int [][]a = new int[10][10]; for(int i = 0; i < 10; i++) { for(int j = 0; j < 10; j++) { System.out.printf("%2d ", a[i][j]); } System.out.println(); } } } ...

Similar questions