PAT (Basic Level) 1027 打印沙漏

题意

按要求打印沙漏图形。

思路

水~

代码

#include <bits/stdc++.h>
using namespace std;
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	int n;
	char c;
	cin >> n >> c;
	int num = 1, sum = 1;
	for (int i = 3; ; i += 2) {
		if (sum > n) {
			sum -= (i - 2) * 2;
			num = i - 4;
			break;
		}
		sum += i * 2;
	}
	for (int i = num; i >= 1; i -= 2) {
		for (int j = 0; j < num / 2 - i / 2; ++j)
			cout << ' ';
		for (int j = 0; j < i; ++j)
			cout << c;
		cout << '\n';
	}
	for (int i = 3; i <= num; i += 2) {
		for (int j = 0; j < num / 2 - i / 2; ++j)
			cout << ' ';
		for (int j = 0; j < i; ++j)
			cout << c;
		cout << '\n';
	}
	cout << n - sum << '\n';
	return 0;
} 

HINT

不定时更新更多题解,Basic Level 全部AC代码,详见 link ! ! !

发布了31 篇原创文章 · 获赞 15 · 访问量 754

猜你喜欢

转载自blog.csdn.net/abcdefbrhdb/article/details/104565341