/**
 *  需求:在计算机上显示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");
    }
}
1.3:编写一个程序,显示下面的图案:

 


 

 

 

相关文章:

  • 2021-05-19
  • 2022-01-11
  • 2021-11-16
  • 2021-07-11
  • 2022-12-23
  • 2021-11-13
  • 2022-01-20
猜你喜欢
  • 2021-12-04
  • 2021-09-06
  • 2021-06-17
  • 2022-12-23
  • 2021-08-14
  • 2022-12-23
  • 2021-11-07
相关资源
相似解决方案