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

PTA乙级 (1027 打印沙漏 (20分))

时间:2020-01-30 22:52:52      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:include   color   ems   cin   turn   name   pre   namespace   ref   

1027 打印沙漏 (20分)

https://pintia.cn/problem-sets/994805260223102976/problems/994805294251491328

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <algorithm>
using namespace std;
int main()
{
	int n,min=1001,c,d,e=0;
	char chr,chr1=‘ ‘;
	cin>>n>>chr;
	for(int i=1;i<=23;i++)
	{
		if((n-(2*i*i-1))<min&&(n-(2*i*i-1)>=0)) {
			c=i;
			min=n-(2*i*i-1);
		}
	}
		for(d=2*c-1;d>=1;d-=2)
		{
			if(d!=2*c-1) for(int j=1;j<=e;j++) cout<<chr1;
			for(int j=1;j<=d;j++) cout<<chr;
			cout<<endl;
			if(d!=1) e++;
		}
		for(d=3;d<=2*c-1;d+=2)
		{
			e--;
			if(d!=2*c-1) for(int j=1;j<=e;j++) cout<<chr1;
			for(int j=1;j<=d;j++) cout<<chr;
			cout<<endl;
		}
    cout<<min;
    return 0;
}

PTA乙级 (1027 打印沙漏 (20分))

标签:include   color   ems   cin   turn   name   pre   namespace   ref   

原文地址:https://www.cnblogs.com/jianqiao123/p/12244078.html

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