(1)、
*****
*****
*****
*****
*****
public class seventh{
public static void main(String[]args){
for(int i=1;i<=5;i++){
for(int j=1;j<=5;j++){
System.out.print("*");
}System.out.println();
}
}
}
(2)、
*****
*****
*****
*****
*****
public class seventh_second{
public static void main(String[]args){
for(int i=0;i<5;i++){
for(int j=0;j<5-i;j++){
System.out.print(" ");
}
for(int j=0;j<5;j++){
System.out.print("*");
}
System.out.println();
}
}
}
(3)、
*
***
*****
*******
*********
public class seventh_third{
public static void main(String[] args){
int i,j,k;
for(i=0;i<6;i++){
for(j=0;j<5-i;j++)
System.out.print(" ");
for(k=0;k<2*i-1;k++)
System.out.print("*");
System.out.print("\n");
}
}
}