php111
package hello;

public class finallianxi {

    public static void main(String[] args) {
        String Strname = "一二三四";
        System.out.println(Strname);
        int a = 1;
        System.out.println(a);
        final double PEI = 3.14;
        System.out.println(PEI);
        String a1=("hello");
        String a3=("world");
        String a2=a1;
        System.out.println(a1);
        System.out.println(a2);


    }

}

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-18
  • 2021-11-04
  • 2021-11-12
  • 2021-11-17
  • 2021-05-21
  • 2021-11-26
  • 2022-12-23
相关资源
相似解决方案