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

打印空心正方形

时间:2019-03-11 18:57:27      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:输出   int   code   std   div   pac   描述   iostream   namespace   

题目描述

打印空心正方形

输入描述

输入一个整数n,1<=n<=100

输出描述

输出一个有字符‘*‘构成的空心正方形(只有边界上有‘*‘)

样例输入

5

样例输出

*****
*   *
*   *
*   *
*****
 1 #include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     int n;
 6     cin>>n;
 7     for(int i=0;i<n;i++)
 8     {
 9         if(i==0||i==n-1){
10             for(int j=0;j<n;j++)
11             {
12                 cout<<"*";
13             }
14             cout<<endl;    
15         }else{
16             cout<<"*";
17             for(int j=0;j<n-2;j++)
18             {
19                 cout<<" ";
20             }
21             cout<<"*";
22             cout<<endl;
23         }
24         
25     }
26 }

 

打印空心正方形

标签:输出   int   code   std   div   pac   描述   iostream   namespace   

原文地址:https://www.cnblogs.com/palx/p/10512383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!