InstructionsCreate a C++ app that displays the elements of a two-dimensional arr
InstructionsCreate a C++ app that displays the elements of a two-dimensional array of integers.
Start with a Visual Studio C++ Console Application.
Declare your array using constants ROW_COUNT and COL_COUNT for the numbers of rows and columns.
Set both the ROW_COUNT and COL_COUNT constants to 10.
Initialize the array by setting each element equal to its row number. Use for loops to set the values.
Display the array with each row on a separate line. Use another set of two for loops to display the values.
Be sure to follow our coding style guidelines: comment header, correct indentation, one blank line to separate different ideas.
Don’t forget to remove the default comments at the end of the file.
What to SubmitSubmit your completed .cpp file. Your code should compile cleanly and run without crashing.
Rubric
Exercise 6 Rubric
Exercise 6 Rubric
CriteriaRatingsPts
This criterion is linked to a Learning OutcomeRuns correctly according to the assignment instructions.Submitted code shows that you carefully followed the assignment instructions. All required features are present and each feature works correctly.
5 to >4.0 ptsGood job!
4 to >0 ptsNot yet…
5 pts
This criterion is linked to a Learning OutcomeFollows class coding standardUses appropriate and descriptive variable names and proper indentation. Has file comment header and main function comment header.
3 to >2.0 ptsGood job!
2 to >0 ptsNot yet…
3 pts
This criterion is linked to a Learning OutcomeSubmitted code compiles with no errors and runs without crashing.
5 ptsGood job!
0 ptsNot yet…
5 pts
This criterion is linked to a Learning OutcomeGood UXUser prompts are informative and presented neatly. Output is neatly formatted and easy to read. User interface follows a consistent scheme for a good User eXperience.
2 to >1.0 ptsGood job!
1 to >0 ptsNot yet…
2 pts
Total Points: 15