前提・実現したいこと
以下の実行結果を得るmain()メソッドを作成してください。
なお、各図形描画インスタンスは、キーボードより入力された値を用いて生成するものとする。
・円
図形描画[ 0:円 2:線 3:三角形 4:長方形 44:正方形 ] : >0
[円を描画] 中心点(100,100)から半径20
周囲の長さは、125.66370614359172
・線
図形描画[ 0:円 2:線 3:三角形 4:長方形 44:正方形 ] : >2
[線を描画] 始点(0,0)から終点(100,100)まで
周囲の長さは、141.4213562373095
###試したこと
下のようなコードをとりあえず書いてみたのですが、キーボードより入力されたというのとは違うのかなと思い、行き詰っています。
該当のソースコード
java
1public static void main(String[] args) { 2 // TODO 自動生成されたメソッド・スタブ 3 Shape cir = new Circle(100, 100, 20); 4 Figure lin = new Line(0, 0, 100, 100); 5 6 System.out.println("・円"); 7 System.out.println(""); 8 System.out.println("図形描写[0:円]:>0"); 9 cir.draw(); 10 System.out.println("周囲の長さは、" + cir.perimeter());
java
1public abstract class Shape implements Figure { 2 3 public abstract void draw() ; 4 5 public abstract double perimeter() ; 6 7}
java
1public class Circle extends Shape { 2 private Point center; 3 private int radius; 4 5 public Circle() { 6 this.center = new Point(); 7 this.radius = 0; 8 } 9 10 public Circle(int x, int y, int r) { 11 this.center = new Point(x, y); 12 this.radius = r; 13 } 14 15 public void draw() { 16 System.out.println("[円を描写]中心点" +this.center.toString()+ "から半径" + this.radius); 17 } 18 19 public double perimeter() { 20 return radius * 2 * Math.PI; 21 } 22}
java
1public class Point { 2 private int x; 3 private int y; 4 5 public Point() { 6 this.x = 0; 7 this.y = 0; 8 9 } 10 11 public Point(int x, int y) { 12 this.x = x; 13 this.y = y; 14 } 15 16 public int getX() { 17 return x; 18 } 19 20 public void setX(int x) { 21 this.x = x; 22 } 23 24 public int getY() { 25 return y; 26 } 27 28 public void setY(int y) { 29 this.y = y; 30 } 31 public String toString() { 32 return "(" + x + "," + y + ")"; 33 } 34 35} 36
java
1interface Figure { 2 public void draw(); 3 4 public double perimeter(); 5 6}
java
1public class Line implements Figure { 2 private Point p1; 3 private Point p2; 4 5 public Line() { 6 this.p1 = new Point(); 7 this.p2= new Point(); 8 } 9 10 public Line(int x1, int y1,int x2, int y2) { 11 this.p1= new Point(x1,y1); 12 this.p2=new Point(x2,y2); 13 } 14 15 16 17 @Override 18 public void draw() { 19 // TODO 自動生成されたメソッド・スタブ 20 System.out.println("[線を描写]始点"+this.p1+"から終点"+this.p2+"まで"); 21 22 } 23 24 @Override 25 public double perimeter() { 26 // TODO 自動生成されたメソッド・スタブ 27 return Math.sqrt(Math.pow(100-0, 2)+Math.pow(100-0,2)); 28 } 29 30}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/09 06:25