使用for循环创建圣诞树 [英] Creating a Christmas Tree using for loops

查看:229
本文介绍了使用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 <= 1; l ++) b System.out.print();
}
}

System.out.println();

$ / 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();




$ b $ p

它使用3个循环:


$ b $ / p>


  • 第一个用于行数,第二个用于打印空间,

  • >
  • 第三个用于打印星号。

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循环创建圣诞树的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆