Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Writing in Java. Instructions are at the top of the first uploaded picture. /* * The purpose of this assignment is to improve your skills

Writing in Java. Instructions are at the top of the first uploaded picture.image text in transcribedimage text in transcribedimage text in transcribed

/* * The purpose of this assignment is to improve your skills of handling * 2D arrays and loops. By the end of this assignment you should be able to * master accessing/setting 2D indices. Submit your file Program3. java to canvas. * Do not submit it in any other format. * Utilize the help giving to you in the SI sessions, office Hours, * Collaborative Labs and labs sessions. */ public class Program3 { public static void main(String[] args) { int a[][]={{1,2}, {3,4}}; int b[][]={{5, 6}, {7,8}}; // Initialize 2D array, namely 'c' to the size of the result. /* Multiply the 2 matrices a*b and put the results into c The logic of Multiplication of matrices as follows: Multiply the rows of 'a' by the columns of 'b' a00.boo + a01 * 510 1 5 + 2, 7 a0o.b01 + a01 * 511 16 + 28 a10.boo + 3.5 + a11.b10 4. 7 a 10.601 + a 11 . b11 3.6 + 4 . 8 the output should be Store the result into a 2D array, namely 'c' printed out and would look like this: 22 43 50 19 */ // 1st Loop i - a. length // Initialize a sum variable // Initialize a sum variable // 2nd nested loop, 3,0- b. length // 3rd nested Loop 1/ Multiply two indices from two matrices using i, k, j, // Add the multiplication result to the sum variable // End of Loop3 // Insert sum into the result 2D array using ij // Print the sum // Reset sum // End of 2nd loop 1/ Print a line // End of 1st loop // Multiply two indices from two matrices using i, k, j, // Add the multiplication result to the sum variable // End of Loop3 // Insert sum into the result 2D array using ij // Print the sum // Reset sum // End of 2nd loop // Print a line // End of 1st loop } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL For Data Science Data Cleaning Wrangling And Analytics With Relational Databases

Authors: Antonio Badia

1st Edition

3030575918, 978-3030575915

More Books

Students also viewed these Databases questions

Question

=+ Who is the negotiation partner at company level?

Answered: 1 week ago

Question

=+Which associations exist?

Answered: 1 week ago