Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use visual C++ PLEASE DO NOT REPOST THIS CODE! IT DID NOT COMPILE https://www.chegg.com/homework-help/questions-and-answers/lab-9-due-end-recitation-time-purpose-2-d-arrays-use-vectors-lab-create-program-produce-2--q24994773 Lab 9 Due by the end of your recitation time

Please use visual C++

image text in transcribed

PLEASE DO NOT REPOST THIS CODE! IT DID NOT COMPILE

https://www.chegg.com/homework-help/questions-and-answers/lab-9-due-end-recitation-time-purpose-2-d-arrays-use-vectors-lab-create-program-produce-2--q24994773

image text in transcribed

Lab 9 Due by the end of your recitation time Purpose: 2-D arrays (do not use vectors) For this lab you are to create a program that will produce a 2-dimensional Pascal array. A Pascal array is a square (number of rows number of columns) array in which the values in the first row and in the first column are 1. The other values in the array are the sum of the value immediately to the left and the value immediately above. For example a 5 by 5 Pascal array would be 1 1 1 1 15 35 70 10 15 35 Consider the circled value (row 3, column4). It was created by adding the value in row 3, column 3 (6) to the value in row2, column 4 (4) Create your program so it could create up to a 10 by 10 array. Prompt the user to enter how many rows (same as number of columns) he/she would like the array to contain. Check to make sure that the entered number is 2 and10. Use one nested loop to fill the array. Then use another nested loop to print the array. Use appropriate formatting in printing the array so the numbers line up. Do not use the same nested loop to both fill and print the array Before trying to write the code, think about how you would calculate what value should be in each element of the array and write your introductory comments Upload your *.cpp file to a submission for the appropriate assignment on Canvas. If you do not get the assignment finished, upload what you have so you will get partial credit. Labs are not accepted late. Please take the time to confirm your submission. You may make multiple submissions to the same drop box on Canvas. The last submission will be graded, earlier submissions will be ignored

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

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions