Index in position 1 exceeds array bounds. Index must not exceed 81.
时间: 2024-01-06 19:08:02 浏览: 119
数据结构英文教学课件:chapter2 Array.ppt
This error message typically means that you are trying to access an element in an array using an index that is larger than the size of the array. In this case, the array has a maximum size of 81 and you are trying to access an element at position 1, but that position is out of bounds.
To fix this error, you need to make sure that you are using valid index values when accessing array elements. Check that the index values are within the range of the array size, which in this case is between 0 and 80.
阅读全文