赞
踩
今天是圣诞节,我心血来潮,写了一个关于圣诞树的代码。
具体看源码。
- #include <stdio.h>
- using namespace std;
-
- void shutou()//树头的函数
- {
- int i;//定义树头的行数
- int j;//定义树头的列数
- for (i = 1; i <= 10; i++)
- {
- for (j = 40; j >= i; j--)
- {
- cout << " ";
- }
- for (j = 1; j <= i*4-2; j++)
- {
- cout << "诞";//树头需要输出的文字
- }
- cout << endl;
- }
- }
-
- void shushen()//树身子的函数
- {
- int i;//定义树身子的行
- int j;//定义树身子的列
- for (i = 1; i <= 16; i++)
- {
- for (j = 40; j >= i; j--)
- {
- cout << " ";
- }
- for (j = 1; j <= i * 2 - 1; j++)
- {
- cout << "圣诞节快乐";//树身子需要输出的文字
- }
- cout << endl;
- }
- }
-
- void shugan()//树干的函数
- {
-
- int i;//定义树干的行
- int j;//定义树干的列
- for (i = 1; i <= 20; i++)
- {
- for (j = 1; j <= 39; j++)
- {
- cout << " ";
- }
- for (j = 39; j <= 41; j++)
- {
- cout << "圣诞节快乐";//树干需要输出的文字
- }
- cout << endl;
- }
- }
- void zhanshi()//圣诞树上祝福语字段前的空格
- {
- int i;
- for (i = 1; i <= 25; i++)
- {
- {
- cout << " ";
- }
- }
-
- }
-
- int main()
- {
- cout << endl;
- zhanshi();
- cout << "MERRY CHRISTMAS!" << endl;//输出祝福语
- cout << endl;
- shutou();
- shushen();
- shugan();
- system("pause");
- return 0;
- }
本人喜欢c语言的stdio库,请谅解。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。