1.3:编写一个程序,显示下面的图案:

 
/**
 *  需求:在计算机上显示JAVA
 *  思路:按位置排列,直接显示
 *   
 *  步骤:略
 */
public class Demo_1{
    public static void main(String[] args)
    {
        System.out.println("    J    A    V     V    A");
        System.out.println("    J   A A    V   V    A A");
        System.out.println("J   J  AAAAA    V V    AAAAA");
        System.out.println(" J J  A     A    V    A     A");
    }
}

 


 

 

 

posted on 2017-09-23 23:29  马文奇  阅读(1556)  评论(1编辑  收藏  举报

导航