下列变量定义中合法的是( )。
A: long _x=12L;
B: double a=e-3;
C: short if=2;
D: float 3_ax=1E-2;
A: long _x=12L;
B: double a=e-3;
C: short if=2;
D: float 3_ax=1E-2;
举一反三
- 下列变量定义中合法的是 A: long ao=0xfdaL; B: short _a=1-.1e-1; C: double b=1+5e2.5; D: float 2_and=1-e-3; E: float a=1e-3;
- 以下正确的定义语句是________ 。 A: double y[ ][3]={0}; B: float x[3][ ]={{1},{2},{3}}; C: int a[1][4]={1,2,3,4,5}; D: long b[2][3]={{1},{1,2},{1,2,3}};
- 以下正确的数组定义语句是____。 A: int y[2][3] = {1,2,3,4,5,6}; B: float x[3][ ] = {{1},{2},{3}}; C: long s[2][3] = {{1},{1,2},{1,2,3}}; D: double t[ ][3] = {0};
- 下列变量中合法的定义是_____。 A: short _a=2-1 B: long if=0xabcL C: double 1_d=1.5e2 D: float a=1.5e2.7
- 以下正确的定义语句是 。 A: A)int a[1][4]={1,2,3,4,5}; B: B)float x[3][]={{1},{2},{3}}; C: C)long b[2][3]={{1},{2,3},{4,5,6}}; D: D)double y[][3]={0};