方法pr声明为
public static void pr ( float[] scores, int n ){ }
声明了三个变量 int[] ary = new[10]; int m=5; int n = 10; 那么下面正确调用pr方法的是(选一项)
A.pr (ary); B.pr (ary,m); C.n = pr (ary,m); D.都不正确
为什么选B?
相关分类