求两线段交点(Java)
摘要:
import java.util.Scanner; class point { double x, y; point(double x, double y) { this.x = x; this.y = y; } } class LinearEquation { point a, b, c, d; double x, ... 阅读全文
posted @ 2016-03-25 11:19 13rj1115 阅读(1556) 评论(0) 推荐(0) 编辑