打印空心三角形

1428: 空心三角形 

时间限制(普通/Java):1000MS/10000MS     内存限制:65536KByte
总提交: 16675            测试通过:5423

描述

把一个字符三角形掏空,就能节省材料成本,减轻重量,但关键是为了追求另一种视觉效果。在设计的过程中,需要给出各种花纹的材料和大小尺寸的三角形样板,通过电脑临时做出来,以便看看效果

输入

每行包含一个字符和一个整数n(0<n<41),不同的字符表示不同的花纹,整数n表示等腰三角形的高。显然其底边长为2n-1。如果遇到@字符,则表示所做出来的样板三角形已经够了。

输出

每个样板三角形之间应空上一行,三角形的中间为空。显然行末没有多余的空格。

题目来源

HDOJ

题目上传者

crq

 

#include<iostream>
#include<vector>
#include<sstream>
#include<string>
#include<iomanip>
#include<cmath>
#include <algorithm>
using namespace std;
int main() {
	char a;
	int b;
	vector <int> t;
	vector <char> s;
	while (cin >> a  && a != '@' && cin >>b) {
		if (b == 1) {
			t.push_back(1);
			s.push_back(a);
		}
		else if (b == 2) {
			t.push_back(2);
			s.push_back(a);
		}
		else {
			t.push_back(b);
			s.push_back(a);
		}
	} // 记录组
	for (int i = 0; i < t.size(); i++) { // 输出组
		bool ts = true;
		if (i == t.size() - 1) {
			ts = false;
		}
		if (t[i] == 1) {
			cout << string(1,s[i]) << endl;
			if (ts == true) {
				cout << endl;
			}
		}if (t[i] == 2) {
			cout << " " << string(1, s[i]) << endl << string(3, s[i]) << endl;
			if (ts == true) {
				cout << endl;
			}
		}if (t[i] >= 3) {
			int qk = (2 * t[i] - 1)/2; // 前导空格
			int p2 = 0; // 第二层开始的中间空格
			cout << string(qk, ' ') << string(1, s[i]) << endl;
			p2++;
			while (qk-- && qk>=1) {
				cout << string(qk, ' ') << string(1, s[i]) << string(p2, ' ') << string(1, s[i]) << endl;
				p2+=2;
			}
			cout << string(2 * t[i] - 1, s[i]) << endl ;
			if (ts == true) {
				cout << endl;
			}
		}
	}
	return 0; 
}



打印空心三角形 , 主要就是 中间的空心 可以通过循环添加空心就行

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值