左三角星形图案
左三角星形图案的问题。 为什么我的代码不打印为左三角星图案,因为我编写了如下代码
public class pattern4 {
public static void main(String[] args) {
int row =8;
for(int i=0;i<row;i++){
for(int j=2*(row-i);j>=0;j--){
System.out.println(" ");
}
for(int j=0;j<=i;j++){
System.out.print("*");
}
System.out.println();
}
}
}
Problem with Left Triangle Star Pattern.
Why my code doesn't print as Left Triangle Star Pattern, as i wrote the code as below
public class pattern4 {
public static void main(String[] args) {
int row =8;
for(int i=0;i<row;i++){
for(int j=2*(row-i);j>=0;j--){
System.out.println(" ");
}
for(int j=0;j<=i;j++){
System.out.print("*");
}
System.out.println();
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将 println(" ") 替换为 print(" ") 并更新 j :
you must replace println(" ") by print(" ") and update the j :