Computer Science
Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number.
Example:
2 | 3 | 1 | (decimal equivalent of 1st row = 153 i.e. 2x82 + 3x81 + 1x80) |
4 | 0 | 5 | (decimal equivalent of 2nd row = 261 i.e. 4x82 + 0x81 + 5x80) |
1 | 5 | 6 | (decimal equivalent of 3rd row = 110 i.e. 1x82 + 5x81 + 6x80) |
Perform the following tasks on the matrix:
- Display the original matrix.
- Calculate the decimal equivalent for each row and display as per the format given below.
Test your program for the following data and some random data:
Example 1:
INPUT:
M = 1
N = 3
ENTER ELEMENTS FOR ROW 1: 1 4 4
OUTPUT:
FILLED MATRIX | DECIMAL EQUIVALENT | ||
---|---|---|---|
1 | 4 | 4 | 100 |
Example 2:
INPUT:
M = 3
N = 4
ENTER ELEMENTS FOR ROW 1: 1 1 3 7
ENTER ELEMENTS FOR ROW 2: 2 1 0 6
ENTER ELEMENTS FOR ROW 3: 0 2 4 5
OUTPUT:
FILLED MATRIX | DECIMAL EQUIVALENT | |||
---|---|---|---|---|
1 | 1 | 3 | 7 | 607 |
2 | 1 | 0 | 6 | 1094 |
0 | 2 | 4 | 5 | 165 |
Example 3:
INPUT:
M = 3
N = 3
ENTER ELEMENTS FOR ROW 1: 2 4 8
OUTPUT:
INVALID INPUT
Example 4:
INPUT:
M = 4
N = 6
OUTPUT:
OUT OF RANGE
Java
Java Arrays
ICSE Prac 2020
15 Likes
Answer
import java.util.Scanner;
public class OctalMatrix
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of rows (M): ");
int m = in.nextInt();
System.out.print("Enter the number of columns (N): ");
int n = in.nextInt();
if (m <= 0 || m >= 10 || n <= 2 || n >= 6) {
System.out.println("OUT OF RANGE");
return;
}
int a[][] = new int[m][n];
for (int i = 0; i < m; i++) {
System.out.println("ENTER ELEMENTS FOR ROW " + (i + 1) + ": ");
for (int j = 0; j < n; j++) {
a[i][j] = in.nextInt();
if (a[i][j] < 0 || a[i][j] > 7) {
System.out.println("INVALID INPUT");
return;
}
}
}
System.out.println("FILLED MATRIX\tDECIMAL EQUIVALENT");
for (int i = 0; i < m; i++) {
int decNum = 0;
for (int j = 0; j < n; j++) {
decNum += a[i][j] * Math.pow(8, n - j - 1 );
System.out.print(a[i][j] + " ");
}
System.out.print("\t\t" + decNum);
System.out.println();
}
}
}
Output
![BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE](https://cdn1.knowledgeboat.com/img/abp12/1/2020-40-p2-1.jpg)
![BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE](https://cdn1.knowledgeboat.com/img/abp12/1/2020-40-p2-2.jpg)
![BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE](https://cdn1.knowledgeboat.com/img/abp12/1/2020-40-p2-3.jpg)
![BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE BlueJ output of Write a program to declare a matrix A[][] of order (M x N) where 'M' is the number of rows and 'N' is the number of columns such that the value of 'M' must be greater than 0 and less than 10 and the value of 'N' must be greater than 2 and less than 6. Allow the user to input digits (0 - 7) only at each location, such that each row represents an octal number. Example: Perform the following tasks on the matrix: (a) Display the original matrix. (b) Calculate the decimal equivalent for each row and display as per the format given below. Test your program for the following data and some random data: Example 1: INPUT: M = 1 N = 3 ENTER ELEMENTS FOR ROW 1: 1 4 4 OUTPUT: Example 2: INPUT: M = 3 N = 4 ENTER ELEMENTS FOR ROW 1: 1 1 3 7 ENTER ELEMENTS FOR ROW 2: 2 1 0 6 ENTER ELEMENTS FOR ROW 3: 0 2 4 5 OUTPUT: Example 3: INPUT: M = 3 N = 3 ENTER ELEMENTS FOR ROW 1: 2 4 8 OUTPUT: INVALID INPUT Example 4: INPUT: M = 4 N = 6 OUTPUT: OUT OF RANGE](https://cdn1.knowledgeboat.com/img/abp12/1/2020-40-p2-4.jpg)
Answered By
6 Likes
Related Questions
Define a class to accept values into an integer array of order 4 x 4 and check whether it is a DIAGONAL array or not. An array is DIAGONAL if the sum of the left diagonal elements equals the sum of the right diagonal elements. Print the appropriate message.
Example:
3 4 2 5
2 5 2 3
5 3 2 7
1 3 7 1Sum of the left diagonal element = 3 + 5 + 2 + 1 = 11
Sum of the right diagonal element = 5 + 2 + 3 + 1 = 11
A single dimensional array has 50 elements, which of the following is the correct statement to initialize the last element to 100.
- x[51]=100
- x[48]=100
- x[49]=100
- x[50]=100
Which of the following is a valid way to declare and initialize an integer array to store the ages of 50 students?
A class teacher wants to arrange the names of her students in alphabetical order. Define a class NameSorter that stores the given names in a one-dimensional array. Sort the names in alphabetical order using Bubble Sort technique only and display the sorted names.
Aryan, Zoya, Ishaan, Neha, Rohan, Tanya, Manav, Simran, Kabir, Pooja
public class NameSorter { void bubbleSort(String names[]) { int len = names.length; _______(1)_________ { _______(2)_________ { _______(3)_________ { String t = names[j]; _______(4)_________ _______(5)_________ } } } } public static void main(String[] args) { String arr[] = {"Aryan", "Zoya", "Ishaan", "Neha", "Rohan", "Tanya", "Manav", "Simran", "Kabir", "Pooja" }; NameSorter obj = new NameSorter(); obj.bubbleSort(arr); for (int i = 0; i < arr.length; i++) { System.out.println(arr[i]); } } }