私は2つの乱数を追加しています(私のプログラムによって生成されました)。操作変数は、ユーザーが求める数学の問題のタイプ (+、-、または *) を入力する文字列です。これは、私の完全なプログラムの 1 つのセクションにすぎません。
public static double getCorrectAnswer(int operand1, int operand2, String operation){
double correctResponse;
correctResponse =(operand1 + (operation) + operand2);
return correctResponse;
}