Update OOP/Java/Lab/Week4/SearchCount.java
This commit is contained in:
parent
1903c1a586
commit
5e9f347b32
@ -11,11 +11,12 @@ class SearchCount {
|
|||||||
int n = sc.nextInt();
|
int n = sc.nextInt();
|
||||||
|
|
||||||
int[][] matrix = new int[m][n];
|
int[][] matrix = new int[m][n];
|
||||||
System.out.println("Enter the elements of the matrix:");
|
|
||||||
int count = 0;
|
|
||||||
System.out.println("Enter the element to search for:");
|
System.out.println("Enter the element to search for:");
|
||||||
int searchElement = sc.nextInt();
|
int searchElement = sc.nextInt();
|
||||||
|
|
||||||
|
System.out.println("Enter the elements of the matrix:");
|
||||||
|
int count = 0;
|
||||||
for (int i = 0; i < m; i++) {
|
for (int i = 0; i < m; i++) {
|
||||||
for (int j = 0; j < n; j++) {
|
for (int j = 0; j < n; j++) {
|
||||||
int element = sc.nextInt();
|
int element = sc.nextInt();
|
||||||
|
Loading…
Reference in New Issue
Block a user