从 W3Schools.cn 在线教程学习 Web 网络开发
运行结果尺寸: 625 x 591
MyClass.java
 


public class MyClass {
  public static void main(String[] args) {
    // Good
    int minutesPerHour = 60;

    // OK, but not so easy to understand what m actually is
    int m = 60;
    
    System.out.println(minutesPerHour);
    System.out.println(m);
  }
}


Result:
60
60