vc++环境下,写出以下初始化数组的长度: 1 int chn[3]; 数组 chn 的长度为 ___ 。 2 float isa[]={1.0,2.0,3.0,4.0,5.0}; 数组 isa 的长度为 ___ 。 3 int doom[8]; 数组 doom 的长度为 ___ 。 4 float pci[4][2]; 数组 pci 的长度为 ___ 。 5 int ast[3][3]; 数组 ast 的长度为 ___ 。 6 int att[3][4]; 数组 att 的长度为 ___ 。 7 float dell[][3]={{1,4,7},{2,5},{3,6,9}}; 数组 dell 的长度为 ___ 。