Skip to content

Commit 2edfe6d

Browse files
committed
Small update to code
Just had to remove a single word
1 parent a4fcb58 commit 2edfe6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GeeksForGeeks/diagonal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class diagonal
3232
void input ()throws IOException // A method to input the array order and elements.
3333
{ InputStreamReader inp=new InputStreamReader(System.in);
3434
BufferedReader br=new BufferedReader(inp);
35-
System.out.println("Enter the matrix order of the square matrix");
35+
System.out.println("Enter the matrix order of the matrix");
3636
p=Integer.parseInt(br.readLine());
3737
q=Integer.parseInt(br.readLine());
3838
a=new int[p][q]; // creating a 2D array.

0 commit comments

Comments
 (0)