Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラス Point と Line を実装する必要があります Point の toString メソッドは (x,y) の形式で点を出力する必要があります Line の toString メソッドは (x1,y1)->(x2,y2) の形式で点を出力する必要があります
次に、メインで LineApp というクラスを作成する必要があります。ポイント (0,0) と (4,3) で線を作成し、線の長さを計算して表示します。
私はこれを見てきましたが、何をすべきかわかりません
たとえば、Line クラスの toString() メソッドは次のようになります。
public String toString() { return "(" + x1 + "," + y1 + ")->(" + x2 + "," + y2 + ")"; }