关于数组
#include <iostream.h>void main()
{
enum WeekDays{sun,mon,tue,wed,thu,fri,sat,daysinweek};
int WeekDays[daysinweek]={10,20,30.40,50,60,70};
cout<<WeekDays[tue]<<endl;
cout<<WeekDays[daysinweek]<<endl;
}
运行结果是
30
1245120
为什么是1245120而不是0!!
我的理解是 daysinweek的值是7
但是初始化的时候只到下标为6,第七是默认的0才对!
请各位仁兄能讲解一下