#include <iostream> using namespace std; int main(){ int a[3]={1,2,3}; for(int i=0;i<3;i++){ cout<<i[a]<<" "; } }
这个代码为什么会输出1 2 3???