码迷,mamicode.com
首页 > 其他好文 > 详细

picture(长方形)

时间:2015-04-26 09:14:50      阅读:136      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!