Write a Java program for following
Attachments:
Answers
Answered by
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
Computer Science,
4 months ago
Math,
4 months ago
Biology,
9 months ago
Computer Science,
9 months ago
Chemistry,
1 year ago