正解:A
An array is the best choice for storing many integers in one container. An array is a data structure that can hold a fixed number of elements, which are all of the same data type. It is especially useful for storing a collection of data items at contiguous memory locations, allowing easy access to the elements using an index. Arrays are fundamental in programming for organizing data, allowing for efficient storage and quick access.