使用Java循环语句打印图形 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Java循环语句打印图形 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15相关的知识,希望对你有一定的参考价值。
package my;public class T1
public static void main(String[] args)
int f=1;
for (int i = 1; i < 6; i++)
int j=0;
while(j<i)
System.out.print(f);
System.out.print("");
j++;
f++;
System.out.println("");
参考技术A for(int i=1;i<16;i++)
System.out.print(i+" ");
追问
那个数字是阶梯分行的,不是一排的啊,怎么做呢
追答图片
追问1
23
456
78910
1112131415
int count=0;
for(int i=1;i<6;i++)
for(int j=1;j<=i;j++)
//System.out.print(j);
count++;
System.out.print(count);
System.out.println("");
以上是关于使用Java循环语句打印图形 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15的主要内容,如果未能解决你的问题,请参考以下文章
Java如何用for循环实现以下图形 * *** ***** ******* ***** *** *