概述
1222: Picture
题目描述
Give you the width and height of the rectangle,darw it.
输入
Input contains a number of test cases.For each case ,there are two numbers n and m (0 < n,m < 75)indicate the width and height of the rectangle.Iuput ends of EOF.
输出
For each case,you should draw a rectangle with the width and height giving in the input.
after each case, you should a blank line.
样例输入
3 2
样例输出
±–+
| |
| |
±–+
/*特效药
给你矩形的宽度和高度。
内幕
输入包含许多测试用例。对于每种情况,
有两个数字n和m(0<n,m<75)表示矩形的宽度和高度 。
特技
对于每种情况,你都应该画一个矩形,输入的宽度和高度。
在每一种情况下,都应该是空行。*/
#include<stdio.h>
int main()
{
int m,n,i,j;
while(scanf("%d%d",&m,&n)!=EOF)
{
printf("+");
for(i=0;i<m;i++)
printf("-");
printf("+n");
for(j=0;j<n;j++)
{
printf("|");
for(i=0;i<m;i++)
{
printf(" ");
}
printf("|n");
}
printf("+");
for(i=0;i<m;i++)
printf("-");
printf("+n");
printf("n");
}
return 0;
}
最后
以上就是闪闪香水为你收集整理的ZZULIOJ.1222: Picture的全部内容,希望文章能够帮你解决ZZULIOJ.1222: Picture所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复