作者:dgsfdg3t4543 | 来源:互联网 | 2023-10-11 14:15
使用类似C语言编写的一段代码:
int A[3] = {1,9,45}; // index of A start from 0
int j = 0;
int n = 3;
int sumAndIncrease(int a,int i) {
int s = 0;
for ( ; i s = s + a;
A[j] = A[j] + 1;
}
return s;
}
void main() {
int s = sumAndIncrease(A[j],j);
cout <}
在以下情况下,请指出并说明程序的输出:
如果a和i按值传递-结果
我想知道结果是3-1-9-45还是3-4-9-45。有人帮我