This uses the Java Virtual Machine ijvm Extend the ijvm inst
This uses the Java Virtual Machine (ijvm). Extend the ijvm instruction to implement the Integer Exclusive OR (ixor) in mic-1.
Any help would be appreciated.
Solution
public class maxCalc2 {
public static void main (String[] args) {
float[] A = new float[10];
int n = 0;
System.out.println(\"Enter a few numbers, ended by 0: \");
A[0] = Keyboard.readFloat();
while (A[n] != 0) {
n = n + 1;
A[n] = Keyboard.readFloat();
}
System.out.println(\"Their maximum is \" + MAX(A, n));
}
public static float MAX (float[] A, int n) {
float result = A[0];
for (int i=0; i<n; i++)
if (A[i] > result)
result = A[i];
return result;
}
}
T
