有 个 相关 的 图形库库 ,你查查吧
自己还是慢慢的琢磨出来了,发上来和大家分享一下
//运行时dos窗口一定要调成英文,简体中文不支持
#include <iostream>
using namespace std;
void main()
{
int l,w,i,j;
cout<<"please input the length and wide of rectangle:"<<endl;
cin>>l>>w;
system("cls");
cout<<"The rectangle is:"<<endl;
cout<<char(218);
for(i=0;i<2*l;i++)
{
cout<<char(196);
}
cout<<char(191)<<endl;
for(i=0;i<w;i++)
{
cout<<char(179);
for(j=0;j<2*l;j++)
{
cout<<" ";
}
cout<<char(179)<<endl;
}
cout<<char(192);
for(i=0;i<2*l;i++)
{
cout<<char(196);
}
cout<<char(217)<<endl;
}