「ボックス」クラスの長さ、幅、高さの入力をそれぞれ取得したいと思います。今、私はそれを整数のストリームとして取り、ボックスの各次元に個別に設定したいと考えています。ストリームは、ユーザーが 0 を押すまで i/p として取得されます。したがって、このように記述しました (メイン メソッドについて言及しているだけで、ボックス クラスを個別に定義しました)。
public static void main(String args[])
{
System.out .print("Enter length, breadth and height->> (Press '0' to end the i/p)");
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
while((br.read())==0)
{
// What should I write here to take the input in the required manner?
}
}
PS: scanner
、console
またはは使用できませんDataInputStream
。では、ここで私を助けてくださいBufferedReader
。