使用for循环创建圣诞树

编程入门 行业动态 更新时间:2024-10-26 19:24:41
本文介绍了使用for循环创建圣诞树的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试使用for循环和嵌套for循环来制作圣诞树。对我来说,我需要能够用*来制作金字塔。我已经尝试了无数次,并且遇到了问题。这里是我的代码: $ b $ pre $ for(int i = 1; i <= 10; i ++){ for int j = 10; j> i; j - ){ System.out.println(); (int k = 1; k< = i; k ++){ System.out.print(*); (int h = 1; h <= 10; h ++){$ b $() (int l = 10; l

我试图做的是:

* *** ***** *******

解决方案

试试这个简单的代码:

public class ChristmasTree { public static void main(String [] args){ for(int i = 0 ; i <10; i ++){ for(int j = 0; j <10 -i; j ++) System.out.print(); for(int k = 0; k <(2 * i + 1); k ++) System.out.print(*); System.out.println(); $ b $ p

它使用3个循环:

  • 第一个用于行数,第二个用于打印空间,
  • >
  • 第三个用于打印星号。

I am trying to make a christmas tree using for loops and nested for loops. For me to do that I need to be able to make a pyramids with *. I have tried countless times and I am having problems making one. Here is my code:

for(int i=1;i<=10;i++){ for(int j=10;j>i;j--){ System.out.println(" "); } for(int k=1;k<=i;k++){ System.out.print("*"); } for(int l=10;l<=1;l++){ for(int h=1;h<=10;h++){ System.out.print(" "); } } System.out.println(); }

What I am trying to do is:

* *** ***** *******

解决方案

Try this much simpler code:

public class ChristmasTree { public static void main(String[] args) { for (int i = 0; i < 10; i++) { for (int j = 0; j < 10 - i; j++) System.out.print(" "); for (int k = 0; k < (2 * i + 1); k++) System.out.print("*"); System.out.println(); } } }

It uses 3 loops:

  • first one for the number of rows,
  • second one for printing the spaces,
  • third one for printing the asterisks.

更多推荐

使用for循环创建圣诞树

本文发布于:2023-10-19 15:04:05,感谢您对本站的认可!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:圣诞树

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!