您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. import figures.Line;
  2. import figures.Point;
  3. public class Main {
  4. public static void main(String[] args) {
  5. Point p1 = new Point(10, 100);
  6. Point p2 = new Point(20, 200);
  7. Line l1 = new Line(p1, p2);
  8. }
  9. }