首页 > 代码库 > PAT/图形输出习题集

PAT/图形输出习题集

B1027. 打印沙漏 (20)

Description:

本题要求你写个程序把给定的符号打印成沙漏的形状。例如给定17个“*”,要求按下列格式打印

*****
 ***
  *
 ***
*****

所谓“沙漏形状”,是指每行输出奇数个符号;各行符号中心对齐;相邻两行符号数差2;符号数先从大到小顺序递减到1,再从小到大顺序递增;首尾符号数相等。

给定任意N个符号,不一定能正好组成一个沙漏。要求打印出的沙漏能用掉尽可能多的符号。

Input:

输入在一行给出1个正整数N(<=1000)和一个符号,中间以空格分隔。

Output:

首先打印出由给定符号组成的最大的沙漏形状,最后在一行中输出剩下没用掉的符号数。

Sample Input:

19 *

Sample Output:

*****
  ***
   *
  ***
*****
2

 1 #include <cstdio>
 2 #include <cmath>
 3 
 4 int main()
 5 {
 6     int n;
 7     char c;
 8     scanf("%d %c", &n, &c);
 9 
10     int bottom = (int)sqrt(2.0*(n+1))-1;
11     if(bottom%2 == 0)
12         --bottom;
13     int used = (bottom+1)*(bottom+1)/2-1;
14     for(int i=bottom; i>=1; i-=2) {
15         for(int j=0; j<(bottom-i)/2; ++j)   printf(" ");
16         for(int j=0; j<i; ++j)  printf("%c", c);
17         printf("\n");
18     }
19     for(int i=3; i<=bottom; i+=2) {
20         for(int j=0; j<(bottom-i)/2; ++j)   printf(" ");
21         for(int j=0; j<i; ++j)  printf("%c", c);
22         printf("\n");
23     }
24     printf("%d\n", n-used);
25 
26     return 0;
27 }

 

PAT/图形输出习题集