【简答题】给出下列【代码】注释标注的代码的输出结果。 class Computer { static long getSum(int a,int n){ long sum = 0,item = a; for(int i=1;i<=n;i++) { sum=sum+item; item=item*10+a; } return sum; } } public class E { public stati...
【单选题】32-bit MIPS computer system, if it is known that the first address of a short int type array array[n] is stored in register $s0, then how is the address of array[2] represented in MIPS assembly langua...