We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4fcb58 commit 2edfe6dCopy full SHA for 2edfe6d
1 file changed
GeeksForGeeks/diagonal.java
@@ -32,7 +32,7 @@ class diagonal
32
void input ()throws IOException // A method to input the array order and elements.
33
{ InputStreamReader inp=new InputStreamReader(System.in);
34
BufferedReader br=new BufferedReader(inp);
35
- System.out.println("Enter the matrix order of the square matrix");
+ System.out.println("Enter the matrix order of the matrix");
36
p=Integer.parseInt(br.readLine());
37
q=Integer.parseInt(br.readLine());
38
a=new int[p][q]; // creating a 2D array.
0 commit comments