Saved Bookmarks
| 1. |
What is the function (or what does it do) of the algorithm?int EvenNum (int[] A){if (A == null) return 0;int n = A.length;if (n==0) return 0; int EvenNo = 0;for (int i = 0; i < n, i++)if (A[i] % 2 == 0) EvenNo++;return EvenNo;} |
|
Answer» Explanation: vGeubddudbss |
|