不会
求怎么做
正在讨论
评论 (2)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
pyw
28 五月 2020, 23:59
public class Rectangle {
//在此编写你的代码
int top,left,width,height;
public Rectangle(int left,int top,int width,int height)
{
this.left = left;
this.top = top;
this.width = width;
this.height = height;
}
public Rectangle(int left,int top)
{
this.left = left;
this.top = top;
}
public Rectangle(int left,int top,int width)
{
this.left = left;
this.top = top;
this.width = width;
}
public Rectangle(Rectangle rectangle1)
{
this.left = rectangle1.left;
this.top = rectangle1.top;
}
public static void main(String[] args) {
}
}
0
Kou Shikyo
6 十月 2020, 07:17
你的ID是屁眼王吗,DOTA2 里面一个选手 CSGO貌似也有叫这个ID的。
0