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


 
This moment will nap, you will have a dream; but this moment study, you will interpret a dream.
原文地址:https://www.cnblogs.com/mawenqi-barry/p/7583478.html