摘要:
package freshman; import java.awt.*;import javax.swing.*; public class LottoMadness extends JFrame { // set up row 1 JPanel row1 = new JPanel(); Butto 阅读全文
摘要:
package room1; import java.time.*;import java.time.temporal.*; class Clock { public static void main(String[] arguments) { // get current time and dat 阅读全文
摘要:
package room1;class Employee{ String name; int age; String designation; double salary; // This is the constructor of the class Employee public Employe 阅读全文
摘要:
package arraylistlearning; import java.awt.*; public class Point3D extends Point { public int z; public Point3D(int x, int y, int z) { super(x,y); thi 阅读全文
摘要:
package arraylistlearning;public class MyPoint4D extends Point3D{ public int t; public MyPoint4D(int x, int y, int z,int t) { super(x, y, z); if(t<0) 阅读全文
摘要:
package arraylistlearning; public class Point4DTester { public static void main(String[] arguments) { MyPoint4D object1 = new MyPoint4D(10,22,71,26); 阅读全文
摘要:
package arraylistlearning; import java.awt.*; public class PointTester { public static void main(String[] arguments) { Point location1 = new Point(11, 阅读全文