私は次のクラスを持っています:
class Area
{
//Get User Input for classes
int length;
int width;
public Area(int x,int y)
{
length = x;
width = y;
}
public int getArea() {
return width * length;
}
public static void main(String[] args)
{
Area folk = new Area(4,5);
System.out.println("Area of 4 * 5 is: " + folk.getArea());
}
}
ユーザー入力を取得するために使用する別のクラスがあります。
import java.util.Scanner;
class Incoming
{
public static void main(String[] args)
{
Scanner reader = new Scanner(System.in);
System.out.println("Enter the first number");
//get user input for a
int a = reader.nextInt();
System.out.println("Input Value Is: " + a);
}
}
最初のクラスでは、事前定義された値の代わりにユーザーに入力を提供してもらいたい(つまりArea folk = new Area(4,5)
)
どうすればそれができますか?