Purchase Solution

VB.NET program. Loops and Arrays. Matrix 3x4 calculations

Not what you're looking for?

Ask Custom Question

Create an application that will allow the user to input a matrix of three columns and four rows.

The input must be done though text boxes.
By default, the array must have the following values:
5, 2, 3
8, 32, 1
4, 9, 10
17, 15, 12

The application will multiply the columns of the matrix (e.g., 5 * 8 * 4 * 17 = 2720) and subtract the rows (e.g., 5 - 2 - 3 = 0).
Display the results for the multiplication of all columns and the subtraction of all rows in a message box.
Create a menu bar with a Calculate menu and include a Compute and an Exit command. The Compute command will calculate either the multiplication or the subtraction of the rows or columns in the array.
Create a Clear button that will clear the result text box and reset all controls.
Create an Exit button.
Use labels to identify the input and output controls.

Purchase this Solution

Solution Summary

The program written in VB.NET presents a nice user interface with ability to enter a matrix 3x4, showing row and column calculations.

Purchase this Solution


Free BrainMass Quizzes
Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C++ Operators

This quiz tests a student's knowledge about C++ operators.