输入 1 2 3 4 5 6 7 8 9 输出 一个三乘三的矩阵 第一层 1 2 3 第二层 4 5 6 第三层 7 8 9 还有 3*3矩阵 每行的和每列的和

问题描述:

输入 1 2 3 4 5 6 7 8 9 输出 一个三乘三的矩阵 第一层 1 2 3 第二层 4 5 6 第三层 7 8 9 还有 3*3矩阵 每行的和每列的和
1 2 3 4 5 6 7 8 9 只是例子 其实是9个输入数字

这样行不行?public class Sss {\x05public static void main(String args[]) {\x05\x05int[][] array = new int[][] { { 1,2,3 },{ 4,5,6 },{ 7,8,9 } };\x05\x05int[] sums = new int[3];\x05\x05int sum = 0;\x05\...Enter the voltage readings: 5 1 5 2.5 3 8 8 9 10 The readings are: 5.0 1.0 5.0 2.5 3.0 8.0 8.0 9.0 10.0 The sum of row 1 is: 11.0 The sum of row 2 is: 13.5 The sum of row 3 is: 27.0 The sum of column 1 is: 15.5 The sum of column 2 is: 13.0 The sum of column 3 is: 23.0import java.util.Scanner;public class Sss { public static void main(String args[]) {double[][] array = new double[][] { { 1, 2, 3 }, { 4, 5, 6 },{ 7, 8, 9 } };for (int row = 0; row