L1-002 打印沙漏
分数 20
本题要求你写个程序把给定的符号打印成沙漏的形状。例如给定17个“*”,要求按下列格式打印
- *****
- ***
- *
- ***
- *****
所谓“沙漏形状”,是指每行输出奇数个符号;各行符号中心对齐;相邻两行符号数差2;符号数先从大到小顺序递减到1,再从小到大顺序递增;首尾符号数相等。
给定任意N个符号,不一定能正好组成一个沙漏。要求打印出的沙漏能用掉尽可能多的符号。
输入在一行给出1个正整数N(≤1000)和一个符号,中间以空格分隔。
首先打印出由给定符号组成的最大的沙漏形状,最后在一行中输出剩下没用掉的符号数。
- 19 *
- *****
- ***
- *
- ***
- *****
- 2
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
本题的解题思路:根据输入的N,找到最上面一行所需要打印的个数,然后根据格式打印即可。
具体代码如下:C++实现
- #include
-
- using namespace std;
- void L1_002_print_hourglass()
- {
- int num;
- char str;
- cin>> num >> str;
-
- int cnt = 1;
- int temp =1;
- int res = 0;
-
- while(temp <= num)
- {
- res = num-temp; //记录剩余个数
- temp += 2 * (2*cnt + 1);
- cnt++;
- }
- cnt = cnt - 1; //记录打印的行数
- for(int i = 0;i
- {
- int c = 2*(cnt-i-1) + 1;
- for(int j = 0;j
- {
- cout << " ";
- }
- for(int k = 0;k
- {
- cout << str;
- }
- cout << endl;
- }
- for(int i = 1;i
- {
- int c = 2*i +1;
- for(int j = 0;j
-1;j++) - {
- cout << " ";
- }
- for(int j = 0;j
- {
- cout << str;
- }
- cout <
- }
- cout << res;
-
- }
-
-
-
- int main()
- {
- L1_002_print_hourglass();
- return 0;
- }
Python代码实现:
- a = input()
- num =(a.split(" ")[0])
- char1 = a.split(" ")[-1]
- num1 = int(num)
-
- cnt = 1
- temp = 1
- res = 0
-
- while(temp <= num1):
- res = num1 - temp
- temp = temp + 2*(2*cnt + 1)
- cnt = cnt + 1
-
- cnt = cnt -1
-
- for i in range(cnt):
- c = 2*(cnt-i) -1
- for j in range(i):
- print(" ",end="")
- while(c):
- print(char1,end="")
- c = c - 1
- print("\n",end="")
-
- for i in range(1,cnt):
- c = 2*i+1
-
- for j in range(cnt-1-i):
- print(" ",end="")
-
- while (c):
- print(char1, end="")
- c = c - 1
- print("\n",end="")
-
- print(res)
有什么问题,欢迎私聊我!!!
-
相关阅读:
用 Canvas 画简易手电筒
web前端期末大作业:云南旅游网页主题网站设计——云南城市旅游5页HTML+CSS+JavaScript
[Spring Boot]10 使用RestTemplate调用第三方接口
基于springboot+mybatis学生管理系统
快速掌握Java中List和Set接口的基本使用
lwip多网卡自适应选择
时间复杂度和空间复杂度(以题目的方式来介绍和分析)
【文件输入输出流】Inputstream和Outputstream
【验证码逆向专栏】百某网数字九宫格验证码逆向分析
26. 【Linux教程】Linux 查看环境变量
-
原文地址:https://blog.csdn.net/xyqqwer/article/details/133156401