java课程设计实用案例/* Here is another short example. Call this file "Example.java". */ class Example { public static void main(String args[]) { int num; // this declares a variable called num num = 100; // this assigns num the value 100 System.out.println("This is num: " + num); num