#include <iostream> using namespace std; int main() { int arr[] = {1, 3, 5, 7, 9}; cout << arr[2] + 2[arr] << endl; return 0; }
10
编译报错
5
12