美文网首页
打印**图案

打印**图案

作者: 2cb3a7b6c710 | 来源:发表于2017-08-08 10:59 被阅读0次

(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");
            
        }
    }
}

相关文章

网友评论

      本文标题:打印**图案

      本文链接:https://www.haomeiwen.com/subject/pjctrxtx.html