Skip to main content

Posts

Showing posts with the label computer science

A C++ program to print the rectangular pattern- full explaination-educationalblock

  A C++ program to print the rectangular pattern Question:  Write a   C++ program to print the rectangular pattern of given rows and                       coloumns   Input: 1.The length or size of the row             2.The length or size of the coloumn sample output:                        1. Enter the length of the row :   5                          Enter the length of the coloumn: 3                                                     ***                           ***                            ***                            ***                           ***                                                                          2.  Enter the length of the row :   5                          Enter the length of the coloumn: 5                                                       *** **                             *** **                            *** **                            *** **                           *** ** The C++ code: This is the code for the c++ program which prints