为了账号安全,请及时绑定邮箱和手机立即绑定

为啥会出现这么多的*号

public static void main(String args[])	
{				
int i=0;		
while(i<=3)		
{			
i++;									
for(int j=1;j<=i;j++)			
{				
System.out.println("*");			
}							
}					
}		
}
结果
*
*
*
*
*
*
*
*
*
*		


正在回答

2 回答

public class HelloWorld {

    

public static void main(String args[]) 

{              

int i=0;      

while(i<=3)     

{          

i++;                                   

for(int j=1;j<=i;j++)          

{              

System.out.print("*");           

}

System.out.println();

}                  

}      

}

//for循环里面是一行的每个元素,不用加println,for循环完了之后换个行就行了,你的代码格式太难看了,我这是直接复制你的改的

运行成功

*
**
***
****


0 回复 有任何疑惑可以回复我~

使用两个for循环啊

public static void main(String[] args){
    for(int i=1;i<=3;i++){
         for(int j=1;j<=i;j++){
             System.out.print("*");
             }
         System.out.println();
         }
  }


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为啥会出现这么多的*号

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信