*****用循环运用
*****
*****
*****
*****
*****
public class www{
public static void main(String[] args) {
for(int i=1;i<=5;i++){
for(int x=1;x<=5;x++){
System.out.print("*");
}
System.out.println();
}
输出:

*****
*****
*****
*****
*****
public class www{
public static void main(String[] args) {
for(int i=1;i<=5;i++){
for(int x=1;x<=5;x++){
System.out.print("*");
}
System.out.println();
}
输出:
