求 用函数画出矩形 c++ 20
3个回答
展开全部
#include<iostream>
using namespace std;
void rect(int len,int wid)
{
int i,j;
for (i=0;i<wid;i++)
{
for (j=0;j<len;j++)
{
if (i==0 || i== wid-1)
{cout<<"*";}
else
{
if (j==0 || j==len-1)
{cout<<"*";}
else {cout<<" ";}
}
}
cout<<endl;
}
}
int main()
{
int len,wid;
cout<<"Please input the length"<<endl;
cin>>len;
cout<<"Please input the width"<<endl;
cin>>wid;
rect(len,wid);
return 0;
}
边框用*打印的,直接调用rect函数就行。下面是附图的结果。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询