hdu2052 Picture(C语言)

这是一道来自HDU的ACM编程题目,要求根据输入的宽度和高度绘制矩形。题目给出C语言的AC代码实现,包括使用嵌套循环构造矩形边框和内部空格,以及处理边界条件。代码运行后能正确输出矩形,并在每个案例后添加空行。解题心得强调在面对简单问题时应提高效率,多做练习以提升编程能力。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
Give you the width and height of the rectangle,darw it.
 

Input
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.
 

Output
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.
 

Sample Input
  
3 2
 

Sample Output
  
+---+ | | | | +---+
 

Author
xhd
 

Source



C语言AC代码
#include<stdio.h>
int main()
{
 int i,j,n,m,a[5000];
 while(scanf("%d%d",&n,&m)!=EOF)
 {
     for(i=0;i<=m+1;i++)
     {
         for(j=0;j<=n+1;j++)
         {
             if(i==0&&j==0||i==m+1&&j==0||i==0&&j==n+1||i==m+1&&j==n+1)
                printf("+");
             else if((j==0&&i>0&&i<m+1||j==n+1&&i>0&&i<m+1))
                printf("|");
             else if(i==0&&j>0&&j<n+1||i==m+1&&j>0&&j<n+1)
                printf("-");
             else
                printf(" ");

         }
         printf("\n");
     }
     printf("\n");
 }
 return 0;
}
心得:题目要绕一个矩形出来,矩形长度n*m,所以注意输出就行了,但是我做得慢了,遇到简单的题,更应当高效地解决,还是要多做题~
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值