Demo02.java 436 B

12345678910111213141516171819
  1. package com.loveCoding.j20250426_java_basic;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Demo02
  6. * @description
  7. * @create 2025/4/26
  8. */
  9. public class Demo02 {
  10. //1、先创建主方法main方法
  11. //缩写:psvm+Enter键
  12. public static void main(String[] args) {
  13. System.out.println(); //输出语句 也可以缩写:sout+Enter键
  14. int a=11;
  15. double b=3.0;
  16. System.out.println(a/b);
  17. }
  18. }