Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  program to print a rectangle of "*"

The following program forms a rectangle of "*"
(Length and width of rectangle entered by user)
Cut & Paste Script
#include<iostream.h>
void main()
{
    int l,w,i,j;
    cout<<" Enter the length :  ";
    cin>>l;
    cout<<" Enter the width  :  ";
    cin>>w;
    cout<<endl;
    for(i=1;i<=w;i++)
    {
        for(j=1;j<=l;j++)
        {
            if(i==1||i==w||j==1||j==l)
                cout<<"*";
            else
                cout<<" ";
        }

    cout<<endl;
    }
}       
Output:
Enter the length :  13
 Enter the width  :  7

*************
*                   *
*                   *
*                   *
*                   *
*                   *
*************
Press any key to continue
 
   
     RELATED SCRIPTS
 
Temperature conversion from Farenheit to Centigrade
Here is a c++ program for Temperature conversion from Farenheit to Centigrade....more »
Category : C++ Programs Hits : 640
   
swaping two strings in c++
Here is a code example to swap two strings using c++....more »
Category : C++ Programs Hits : 610
   
Program for calculation of diameter, circumference and area of circle
This c++ program example will calculate the diameter, circumference and area of circle....more »
Category : C++ Programs Hits : 700
   
printing current date and time using c++
An example to print current date and time using c++....more »
Category : C++ Programs Hits : 684
   
Number guess game using c++
Here is a simple number guess game program written in c++. User will enter his guess and program will match this number with a random generated number and prints the results on screen....more »
Category : C++ Programs Hits : 665
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Action Arcade Adventure Set: The Best Way to Create Action Arcade Games in C  Ebook Action Arcade Adventure Set: The Best Way to Create Action Arcade Games in C
   
Download The Definitive Guide to symfony  Ebook The Definitive Guide to symfony
   
Download Practical PostgreSQL  Ebook Practical PostgreSQL
   
Download Data Structures and Algorithms With Object-Oriented Design Patterns in Java  Ebook Data Structures and Algorithms With Object-Oriented Design Patterns in Java
   
Download Make A Living Off Your Blog Ebook Make A Living Off Your Blog
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz