所以我有这个制作盒子的代码,但想要制作角+,长度|和宽度 - 。还想输入一个数字,这样您就可以像 cout<<"enter the length number" 等这样绘制它们......我该怎么做?
这是我必须制作的盒子:
#include <iostream.h>
#include <string.h>
void main()
{
for(int z=1; z<=79; z++)
{
cout << "";
}
cout << endl;
for(int i=1; i<=5; i++)
{
cout << "";
for(int j=1; j<=77; j++)
{
cout << " ";
}
cout << "" << endl;
}
for(int y=1; y<=79; y++)
{
cout << "";
}
cout << endl;
}