运行下列程序,输出的数字有?
int d[8]={2,5,8,11,14,17,20,23}; for (int i=0; i<8; i++) if(d[i]%2==0) cout<<d[i]<<" ";
14
5
2
8