Picture  2050

来源:互联网 发布:走遍中国中国古镇 知乎 编辑:程序博客网 时间:2024/05/29 19:30

Picture

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
+---+| || |+---+
#include <iostream>#include <stdio.h>#include <stdlib.h>#include<string>#include<iomanip>using namespace std;char s[100];int main(){int m ,n;while (cin >> m >> n){cout << "+";for(int i =1 ; i <= m ; i++) cout <<"-";cout << "+" <<endl;for(int i = 1; i <= n ; i++){cout<<"|";cout<<setfill(' ')<<setw(m+1);cout<<"|"<<endl;;}cout << "+";for(int i =1 ; i <= m ; i++) cout <<"-";cout << "+" <<endl;cout <<endl;}    return 0;}


0 0
原创粉丝点击