填空题 下面代码用来统计一组整数中的正数个数,请将程序补充完整。 public class CountPositive { public static int getPositiveCount(____ numbers) { int count = 0; for (int ____ ; i < numbers.length ; i++) { if (____ > 0 ) { count++; } } return count ; } public static void main(String[] args) { int[] values = {3, -3, 7, -8, 12, 0, 5, -1}; int positiveCount = getPositiveCount(____); System.out.println("数组中有" + positiveCount + "个正数"); } }