JAVA矩阵程序仅打印0秒而不接受输入

时间:2017-05-31 09:36:09

标签: java arrays matrix

我的程序运行没有错误。 但是,以某种方式跳过readInput方法。 这导致仅打印0。

此外,如何修改我的displayResult方法,以使我的输出在显示中更像“矩阵式”。

我的源代码如下。

import java.util.Scanner;
public class Matrices {
    int i, j, k, n = 3;
    int[][] matA = new int[n][n];
    int[][] matB = new int[n][n];
    int[][] matSum = new int[n][n];
    int[][] matProd = new int[n][n];

    public void readInput() {
        Scanner scan = new Scanner(System.in);
        for (i = 0; n < 3; i++) {
            for (j = 0; j < n; j++) {
                System.out.println("matA[" + i + "][" + j + "]");
                matA[i][j] = scan.nextInt();
                System.out.println("matA[" + i + "][" + j + "]");
                matA[i][j] = scan.nextInt();
            }
        }
    }

    public void findSum() {
        for (i = 0; i < n; i++) {
            for (j = 0; j < n; j++) {
                matSum[i][j] = matA[i][j] + matB[i][j];
            }
        }
    }

    public void findProduct() {
        for (i = 0; i < n; i++) {
            for (j = 0; j < n; j++) {
                for (k = 0; k < n; k++) {
                    matProd[i][j] = matProd[i][j] + matA[i][j] * matB[i][j];
                }
            }
        }
    }

    public void displayResult() {
        // Printing the Sum Matrix
        System.out.println("Sum Matrix is:");
        for (i = 0; i < n; i++) {
            for (j = 0; j < n; j++) {
                System.out.println(matSum[i][j] + " ");
            }
        }

        // Printing the Product Matrix
        System.out.println("Product Matrix is:");
        for (i = 0; i < n; i++) {
            for (j = 0; j < n; j++) {
                System.out.println(matProd[i][j] + " ");
            }
        }
        System.out.println();
    }

public static void main(String[] args){

    System.out.println("Matrix Calculator");
    System.out.println("-------------------\n");
    Matrices self = new Matrices();

    self.readInput();
    self.findSum();
    self.findProduct();
    self.displayResult();
}
}

3 个答案:

答案 0 :(得分:5)

您的读取输入法因此无效:

[Client] Geocode error: Error Domain=GEOErrorDomain Code=-8 "(null)"

因为声明 n 并且初始化为3,条件n&lt; 3返回false,因此矩阵从不填充,之后的所有内容都是基于零矩阵的jsut!

答案 1 :(得分:2)

你在for循环

中犯了一个错误
int i, j, k, n=3;
int[][]matA = new int [n][n];
int[][]matB = new int [n][n];
int[][]matSum = new int [n][n];
int[][]matProd = new int [n][n];

public void readInput(){
    Scanner scan = new Scanner(System.in);
    for(i = 0; n < 3; i++){
        for(j = 0; j < n; j++){ ...

此处 n&lt; 3 将评估为 3 <3 ,其逻辑上返回false并且控件永远不会进入第一个for loop并且您的{{1}被执行。

所以将 n&lt; 3 替换为 i&lt; 3

答案 2 :(得分:1)

请使用以下代码:

...
return fetch( ...
...
loginUser().then(responseData => useResponseDataForSomething(responseData)