| 140 | A[index]=x; |
| 141 | } |
| 142 | int Array::Max() |
| 143 | { |
| 144 | int max=A[0]; |
| 145 | int i; |
| 146 | for(i=1;i<length;i++) |
| 147 | { |
| 148 | if(A[i]>max) |
| 149 | max=A[i]; |
| 150 | } |
| 151 | return max; |
| 152 | } |
| 153 | int Array::Min() |
| 154 | { |
| 155 | int min=A[0]; |
nothing calls this directly
no outgoing calls
no test coverage detected