java - 如何从控制台接受用户数据

标签 java console-application bufferedreader

我的控制台 java 应用程序生成一个包含一些随机数的 3x3 矩阵。我想做的是从集合中删除一些随机数,而是允许用户输入这些数字

enter image description here

到目前为止,我已经尝试了以下方法,但它不起作用

   package magicsquare;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Random;

public class MagicSquare {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        System.out.print("\n\nEnter the size of the matrix : ");
        int n = Integer.parseInt(br.readLine());
        if (n > 5 && n < 2) {
            System.out.println("Enter a number between 2 to 5 ");
        } else {
            int A[][] = new int[n][n]; // Creating the Magic Matrix
            int i, j, k, t;
            /*Initializing every cell of the matrix with 0 */
            for (i = 0; i < n; i++) {
                for (j = 0; j < n; j++) {
                    A[i][j] = 0;
                }
            }
            /* When the size of the matrix is Odd */
            if (n % 2 != 0) {
                i = 0;
                j = n / 2;
                k = 1;
                while (k <= n * n) {
                    A[i][j] = k++;
                    i--; // Making one step upward
                    j++; // Moving one step to the right 
                    if (i < 0 && j > n - 1) // Condition for the top-right corner element 
                    {
                        i = i + 2;
                        j--;
                    }
                    if (i < 0) // Wrapping around the row if it goes out of boundary 
                    {
                        i = n - 1;
                    }
                    if (j > n - 1) // Wrapping around the column if it goes out of boundary 
                    {
                        j = 0;
                    }
                    if (A[i][j] > 0) // Condition when the cell is already filled
                    {
                        i = i + 2;
                        j--;
                    }
                }
            } /* When the size of the matrix is even */ else {
                k = 1;
                /* Filling the matrix with natural numbers from 1 till n*n */
                for (i = 0; i < n; i++) {
                    for (j = 0; j < n; j++) {
                        A[i][j] = k++;
                    }
                }
                j = n - 1;
                for (i = 0; i < n / 2; i++) {
                    /* swapping corner elements of primary diagonal */
                    t = A[i][i];
                    A[i][i] = A[j][j];
                    A[j][j] = t;
                    /* swapping corner elements of secondary diagonal */
                    t = A[i][j];
                    A[i][j] = A[j][i];
                    A[j][i] = t;
                    j--;
                }
            }
            /* Printing the Magic matrix */
            System.out.println("The Magic Matrix of size " + n + "x" + n + " is:");
            for (i = 0; i < n; i++) {
                for (j = 0; j < n; j++) {
                    //remove random element from array
                   Random rand = new Random();   
                  for (i = 0; i < 4 ; i++)
                  {
                  int randomNum1 = rand.nextInt((n-1) - 0 + 1) + 0;
                  int randomNum2 = rand.nextInt((n-1) - 0 + 1) + 0;
                  BufferedReader dr = new BufferedReader(new InputStreamReader(System.in));
                  A[randomNum1][randomNum2] = Integer.parseInt(dr.readLine());
                  }
                    System.out.print(A[i][j] + "\t");
                }
                System.out.println();

            }

        }
    }

}

编辑

我想要发生的是矩阵显示时缺少一些数字。然后用户将光标放在缺失的位置然后输入数字

最佳答案

在您的代码中,您让用户为显示的矩阵的每个数字选择多个数字,因此在打印一个数字之前需要多个输入。你想要这样的东西吗?

                /* Printing the Magic matrix */
        System.out.println("The Magic Matrix of size " + n + "x" + n + " is:");
        Random rand = new Random();
        for (i = 0; i < 2; i++) { //lets a user choose 2 numbers to be replaced
            System.out.println("Please input a number: ");
            int randomNum1 = rand.nextInt((n - 1) - 0 + 1) + 0;
            int randomNum2 = rand.nextInt((n - 1) - 0 + 1) + 0;
            BufferedReader dr = new BufferedReader(new InputStreamReader(System.in));
            A[randomNum1][randomNum2] = Integer.parseInt(dr.readLine());
        }

        for (i = 0; i < n; i++) {
            System.out.println("\n");
            for (j = 0; j < n; j++)
                System.out.print(A[i][j] + "\t");
        }
        System.out.println();

    }
}

编辑:同一个数字可能会被这段代码替换两次。

关于java - 如何从控制台接受用户数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33597338/

相关文章:

.net - 为.NET程序提供windows应用程序和控制台应用程序的输出类型

c - 如果必须终止控制台,如何查看 Visual Studio 的输出?

java - StringTokenizer 无法与 BufferedReader 一起使用

java - 我遇到错误 : “javac.exe” exited with code 3

java - 如何使用 JUnit 在 Java 中测试具有 boolean 返回类型的方法

java - 如何从字符串数组中打印随机单词? java

swift - 范围结构可以用作 Swift 中的用户输入吗?

java - 显示文本中最常见的单词

java - 使用 BufferedReader 排序读入

java - 为什么我不断往 hashMap 中放入东西后,它一直说 hashMap 的大小为零?