C++控制台圣诞树

前言

有是一年圣诞节,先祝大家圣诞节快乐,所以本蒟蒻在AFO之后决定回来更新一篇打印字符圣诞树的教程 (呃好吧我承认我就是想嫖奖品)

效果展示

C++控制台圣诞树_第1张图片

呃我知道这有点拉,但是……蒟蒻能有什么坏心思呢,他只不过想嫖奖品罢了 

实现步骤

其实不难发现,圣诞树是由树叶和树干构成,树叶可以看做是三个字符三角形,而树干可以看做是字符长方形。

树叶

那我们就先要学会打印字符三角形

like this:

对这个三角形再进行分析,可以得到第i行的空格数为(n-i),字符个数为(i * 2 - 1),那知道了如何打印,就可以用双层循环来实现了

void tree(int n){
	for(int i = 1; i <= n; i++){
		for(int j = i ;j < n;j++){
			cout << " ";
		}
		for(int j = 1;j <= i * 2 - 1;j++){
			cout << "*";
		}
		cout << endl;
	}
}

但进行调用后就会发现出现了错位的现象

tree(3);
tree(5);
tree(7);

C++控制台圣诞树_第2张图片 

 显然是我们的缩进出问题了,那我们需要在输出前加上一定量的空格。

 如何确定空格的个数呢,其实我们只需要看准三角形的中心线(最顶上那个单个字符的)

第一层三个的和最下层7个的差了4格,第二层五个的差了2格

可以得到需要位移的格数为(7-n)

所以只需要再加一个循环就可以解决问题

void tree(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= (7 - n);j++){
			cout << " ";
		}
		for(int j = i ;j < n;j++){
			cout << " ";
		}
		for(int j = 1;j <= i * 2 - 1;j++){
			cout << "*";
		}
		cout << endl;
	}
}

 C++控制台圣诞树_第3张图片

 当然了也可以手动打三个不同的函数,这里这样改一是为了减少代码量,二是更改圣诞树形状的时候更加方便

树干

树干就非常简单了,直接打印一个长方形就OK

void wood(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= 5; j++){
			cout << " ";
		}
		for(int j = 1; j <= 3; j++){
			cout << "*";
		}
		cout << endl;
	}
}

编码实现

接下来放出完整代码

#include 
using namespace std;
void tree(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= (7 - n);j++){
			cout << " ";
		}
		for(int j = i ;j < n;j++){
			cout << " ";
		}
		for(int j = 1;j <= i * 2 - 1;j++){
			cout << "*";
		}
		cout << endl;
	}
}
void wood(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= 5; j++){
			cout << " ";
		}
		for(int j = 1; j <= 3; j++){
			cout << "*";
		}
		cout << endl;
	}
}
int main(){
	tree(3);
	tree(5);
	tree(7);
	wood(5);
	return 0;
}

之前有大佬说我的码风不太好,虽然说也不知道具体哪里不好,但还是放一个简洁版的吧

简洁版

#include 
using namespace std;
void tree(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= (7 - n);j++) cout << " ";
		for(int j = i ;j < n;j++) cout << " ";
		for(int j = 1;j <= i * 2 - 1;j++) cout << "*";
		cout << endl;
	}
}
void wood(int n){
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= 5; j++) cout << " ";
		for(int j = 1; j <= 3; j++) cout << "*";
		cout << endl;
	}
}
int main(){
	tree(3);
	tree(5);
	tree(7);
	wood(5);
	return 0;
}

最后

竹子现在真的已经退役啦,但是这次期末考好了就可以进提前批,因为是以OIer的身份进的,所以估计明年上半年就可以重新开始学习OI了

嗷最近好像都忘了说,三连谢谢

你可能感兴趣的:(随笔,C++入门基础教程,c++,开发语言)