回文的话就是正反读都一样吧;假设数组为num{1,2,3,4,5,4,3,2,1}bool Istrue;for(i=0; i<9;i++){if(num[i] != num[9-1-i])Istrue = false;}return Istrue;