Java练习题4_3_2407林大锐格平台
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java练习题4_3_2407林大锐格平台相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; class Rectangular { private static int x, y; private static int countP = 0; public Rectangular(int xx, int yy) { x=xx; y=yy; } public Rectangular(Rectangular p) { x=p.x; y=p.y; } public int getX() { return x; } public int getY() { return y; } public static void GetC() { countP++; System.out.println("Object id=" + countP+" X*Y = "+ (x*y)); } } public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); Rectangular A=new Rectangular(sc.nextInt(),sc.nextInt()); A.GetC(); Rectangular B=new Rectangular(A); B.GetC(); } }
以上是关于Java练习题4_3_2407林大锐格平台的主要内容,如果未能解决你的问题,请参考以下文章