编写程序,打印如下图案,要求该图案的行数由用户输入。 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5
2个回答
展开全部
public class Test {
public static void main(String[] args) {
int rows = 5;
for(int i = 1; i <= rows; i++){
for(int j = 1; j <= i; j++){
System.out.print(j + " ");
}
System.out.println();
}
}
}
public static void main(String[] args) {
int rows = 5;
for(int i = 1; i <= rows; i++){
for(int j = 1; j <= i; j++){
System.out.print(j + " ");
}
System.out.println();
}
}
}
来自:求助得到的回答
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询