Sponsored links

Thursday 9 May 2013

CS201 Introduction to Programming Assignment 2 Solution Spring May 2013


Problem Statement
:     

Write a C++ program that prints your VUID by using character array, then prints your VUID in reverse order by using character array and finally stores and displays the digits of your VUID at the diagonal of 9 x 9 Matrix by using two dimensional integer array.
You are required to perform these tasks with the help of following three functions:
  • DisplayVUID()
  • DisplayReverse(char [])
  • StoreDiagonal()

Detailed Description:

Description of above functions are as follows:

DisplayVUID()
This function stores your VUID in character array (for example bc020455055) and simply prints it.

DisplayReverse(char [])
This function takes the character array as parameter having your VUID and displays it in reverse order.

StoreDiagonal()
This function stores the digits of your VUID at the diagonal of 9 x 9 matrix, for example VUID i.e. bc020455055   contains the digits 020455055, so you have to store these digits in the diagonal of the 9 x 9 matrix as follows:


No comments:

Post a Comment