我是用Visual studio2010的,然后我是渣渣,复制进去有错误,越改越多错,想哭了!
追答估计就是调用时有问题吧。
我没用过VS,都是在Mac上做前端所以大概没法继续帮你太多。
试试:
public void GetFactors(int n, out int[] Factors){
Debug.Log ("Start");
int Count = 0;
int[] temp = new int[n];
for(int i = 1; i < n; i++){
if (n % i == 0) {
temp [Count] = i;
Count++;
}
}
int[] OutFactors = new int[Count];
for (int i = 0; i < OutFactors.Length; i++) {
Debug.Log (temp [i]);
OutFactors [i] = temp [i];
}
Factors = OutFactors;
Debug.Log ("Ended, with total of "+Count+" Factors");
}
在某个地方调用这个函数,会在Console里输出所有的数。
然后在后面两个参数分别为n是一个整数,你要找的那个,factors是一个int[]。