当前位置:   article > 正文

【圣诞节】Dev c++ 专属圣诞树_devc++圣诞树代码

devc++圣诞树代码

今天是圣诞节,我心血来潮,写了一个关于圣诞树的代码。

具体看源码。

  1. #include <stdio.h>
  2. using namespace std;
  3. void shutou()//树头的函数
  4. {
  5. int i;//定义树头的行数
  6. int j;//定义树头的列数
  7. for (i = 1; i <= 10; i++)
  8. {
  9. for (j = 40; j >= i; j--)
  10. {
  11. cout << " ";
  12. }
  13. for (j = 1; j <= i*4-2; j++)
  14. {
  15. cout << "诞";//树头需要输出的文字
  16. }
  17. cout << endl;
  18. }
  19. }
  20. void shushen()//树身子的函数
  21. {
  22. int i;//定义树身子的行
  23. int j;//定义树身子的列
  24. for (i = 1; i <= 16; i++)
  25. {
  26. for (j = 40; j >= i; j--)
  27. {
  28. cout << " ";
  29. }
  30. for (j = 1; j <= i * 2 - 1; j++)
  31. {
  32. cout << "圣诞节快乐";//树身子需要输出的文字
  33. }
  34. cout << endl;
  35. }
  36. }
  37. void shugan()//树干的函数
  38. {
  39. int i;//定义树干的行
  40. int j;//定义树干的列
  41. for (i = 1; i <= 20; i++)
  42. {
  43. for (j = 1; j <= 39; j++)
  44. {
  45. cout << " ";
  46. }
  47. for (j = 39; j <= 41; j++)
  48. {
  49. cout << "圣诞节快乐";//树干需要输出的文字
  50. }
  51. cout << endl;
  52. }
  53. }
  54. void zhanshi()//圣诞树上祝福语字段前的空格
  55. {
  56. int i;
  57. for (i = 1; i <= 25; i++)
  58. {
  59. {
  60. cout << " ";
  61. }
  62. }
  63. }
  64. int main()
  65. {
  66. cout << endl;
  67. zhanshi();
  68. cout << "MERRY CHRISTMAS!" << endl;//输出祝福语
  69. cout << endl;
  70. shutou();
  71. shushen();
  72. shugan();
  73. system("pause");
  74. return 0;
  75. }

 本人喜欢c语言的stdio库,请谅解。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/884426
推荐阅读
相关标签
  

闽ICP备14008679号