Java では、int を double にキャストしてから int に戻そうとしています。
このエラーが発生しています:
unexpected type
(double)(result) = Math.pow((double)(operand1),(double)(operand2));
^
required: variable
found: value
このコードから:
(double)(result) = Math.pow((double)(operand1),(double)(operand2));
return (int)(result);
エラーメッセージは何を意味していますか?