import java.util.*; class Shape { int value; public Shape(int value) { this.value = value; } public int shape() { return value + value; }
確定! 回上一頁