public static void main(String[] args) {
for(int x=0;x<4;x++){//外循环控制的是行数
for(int y=0;y<5;y++){//内循环控制的是每一行的个数
System.out.print("*");
}
System.out.println();
}
/*
打印
*****
****
***
**
*
*/
/*int z=5;//第一种
for(int x=1;x<=5;x++){//1-5 1-4 1-3//1-5 2-5 3-5
for(int y=1;y<=z;y++){
System.out.print("*");
}
System.out.println();
z--;
}*/
/*int z=1;//第二种
for(int x=1;x<=5;x++){//1-5 1-4 1-3//1-5 2-5 3-5
for(int y=z;y<=5;y++){
System.out.print("*");
}
System.out.println();
z++;
}
*/
//第三种
/*for(int x=1;x<=5;x++){//1-5 1-4 1-3//1-5 2-5 3-5
for(int y=x;y<=5;y++){
System.out.print("*");
}
System.out.println();
}*/
/*
打印
*
**
***
****
*****
for(int x=1;x<=5;x++){
for(int y=1;y<=x;y++){
System.out.print("*");
}
System.out.println();
}*/
/*
打印
54321
5432
543
54
5
*/
/*for(int x=1;x<=5;x++){
for(int y=5;y>=x;y--){
System.out.print(y);
}
System.out.println();
}*/
/*
1
22
333
4444
55555
*/
/*for(int x=1;x<=5;x++){
for(int y=1;y<=x;y++){
System.out.print(x);
}
System.out.println();
}*/
/*九九乘法表*/
/*for(int x=1;x<=9;x++){
for(int y=1;y<=x;y++){
System.out.print(y+"*"+x+"="+y*x+"\t");
}
System.out.println();
}*/
/*
\n:回车
\t:制表符
\r:按下回车键
windows系统中回车符其实是由两个符号组成的 \r\n
linux中回车符是\n
*/
/*
* * * * *
* * * *
* * *
* *
*
*/
for(int x=1;x<=5;x++){
for(int y=1;y<x;y++){
System.out.print(" ");
}
for(int z=x; z<=5;z++){
System.out.print("* ");
}
System.out.println();
}
}
运行: