class round
{int[] point;
int size;
public round(int x,int y,int size)
{
thispoint[0]=x;
thispoint[1]=y;
thissize=size;}
public int checked(round temp)
{if(temppoint[0]==thispoint[0]&&temppoint[1]==thispoint[1])
if(tempsize==thissize)return 2;
else return 1;
else return 0;
}
}
public class a
{
public static void main(String args[])
{
round x1=new round(1,2,3);
round x2=new round(1,2,5);
if(x1checked(x2)==1)
Systemoutprintln("是同心圆");
else if(x1checked(x2)==2)
Systemoutprintln("两圆是相同的");
else if(x1checked(x2)==0)
Systemoutprintln("两圆没有任何关系");
}
}
以上就是关于JAVA定义类区别同心圆的程序全码。。全部的内容,包括:JAVA定义类区别同心圆的程序全码。。、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)