1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#include <iostream>
#include <string>
using namespace std;
string operator *( int n, string s ) { return n ? s + ( n - 1 ) * s : ""; }
//======================================================================
int getInt( string prompt, int mn, int mx )
{
int value;
cout << prompt;
if ( cin >> value && value >= mn && value <= mx ) // if OK
{
return value;
}
else // if not OK
{
cin.clear(); cin.ignore( 1000, '\n' ); // tidy up the mess
return getInt( prompt, mn, mx ); // try again
}
}
//======================================================================
void drawRectangle( int width, int height )
{
string top = '+' + string( width - 2, '-' ) + "+\n";
string mid = '|' + string( width - 2, ' ' ) + "|\n";
cout << top + ( height - 2 ) * mid + top;
}
//======================================================================
int main()
{
int width = getInt( "Enter width (3<=w<=20 ): ", 3, 20 );
int height = getInt( "Enter height (3<=h<=20 ): ", 3, 20 );
drawRectangle( width, height );
}
|