首页 > 其他 > 详细

picture(长方形)

时间:2015-04-26 09:14:38      阅读:202      评论:0      收藏:0      [点我收藏+]

Picture

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 19457    Accepted Submission(s): 10008


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。
 
#include<stdio.h>
//#include<stdlib.h>
main()
{
  int a,b,c,j,i,k;
  while(scanf("%d%d",&a,&b)!=EOF)
 { for(i=0;i<a+2;i++)  
  {
  if(i==0||i==a+1)
  //printf(‘ ‘);
    printf("+");
 else 
  printf("-");
  if(i==a+1)
  printf("\n");
                }
  for(i=0;i<b;i++)
  for(j=0;j<a+2;j++)
  {if(j==0||j==a+1)
  printf("|");
  else printf(" ");
  if(j==a+1)
  printf("\n");}
  for(i=0;i<a+2;i++)  
  {
  if(i==0||i==a+1)
  //printf(‘ ‘);
    printf("+");
 else 
  printf("-");
  if(i==a+1)
  printf("\n");
                }
   printf("\n");             }
 // system("pause");
      return 0; 
      }

Sample Input
3 2
 

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

picture(长方形)

原文:http://blog.csdn.net/l15738519366/article/details/45285679

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!