(5 points) Translate the following high level language code into IJVM. Assume
that count and answer are integers and that calculate
is a function of two integer arguments returning an integer. Assume that
the return value from the function will be on top of the stack upon return
from the function. Push a value of 0 on the stack for OBJREF before pushing
the parameters on the stack for the call to calculate.
total = 0;
for (count = 0; count < 10; count++) {
answer = calculate( count, 10);
if (answer > 0) {
total += answer;
}
}