visual basic 1
visual basic
Fresh Coffee Application
JavaBeans Coffee House sells regular and decaf coffee in each of its three stores. The sales manager wants an application that displays the total sales made in the previous month. The sales amounts for the previous month are shown in the chart below.
Regular |
Decaf |
|
Store 1 |
2,650.32 |
1,200.75 |
Store 2 |
4,172.55 |
1,890.42 |
Store 3 |
1,400.22 |
790.85 |
The application will store the sales amounts in a two dimensional array that has three rows and two columns. Each row will contain the data pertaining to one of the three stores. The sales amounts for regular coffee will be stored in the first column. The second column will contain the sales amounts for decaf coffee. The application will need to accumulate the array values.
You will use a For Each..Next loop for this assignment.