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

打印沙漏

时间:2018-09-07 18:04:31      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:name   str   space   cout   ==   har   for   pac   --   

#include<iostream>
using namespace std;
int main(){
 
 int number,temp=7,a=3;
 char c;
 cout<<"请输入沙漏数"<<endl;
 cin>>number;
 cin>>c;
 do{
  if(number<(temp+2*(a+2)))
   break;
  else if(number==(temp+2*(a+2))){
   temp=temp+2*(a+2);
   a=a+2;
   break;
  }
  else{
  temp=temp+2*(a+2);
   a=a+2;
  }
 }while(1);
 int t=(a+1)/2;
 for(int i=t;i>1;i--){
  for(int k=t-i;k>0;k--)
  {cout<<" ";}
   for(int j=1;j<=2*i-1;j++)
   {cout<<c;}
   cout<<endl;
 }
  for(int i=1;i<=t;i++){
  for(int k=t-i;k>0;k--)
  {cout<<" ";}
   for(int j=1;j<=2*i-1;j++)
   {cout<<c;}
   cout<<endl;
 }
  int h=number-temp;
  cout<<h<<endl;
   
  return 0;
}

打印沙漏

标签:name   str   space   cout   ==   har   for   pac   --   

原文地址:https://www.cnblogs.com/zzstdruan1707-4/p/9606097.html

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