使用ASSET规划新建项目,假设使用UTM投影方式,需要确定UTMZONE值,已知Zone=rounddown(最左经度/6,0)+31,中央经线=(Zone-30)×6-3。假设某地的最左经纬度分别为126.3446°、23.1856°,则UTMZONE应该设置为()。
A:129 B:52 C:21 D:126
-23,11,-6,0,-2,-5,( )。
A:-9 B:-5 C:5 D:3
在直角坐标系中,若平面区域D中所有点的坐标(x,y)均满足:0≤x≤6,0≤y≤6,∣y-x∣≤3,x2+y2≥9,则D的面积是()
A:
B:
C:
D:
E:
用下列语句定义数组的元素个数是( )。
Option Base 1
Dim Arr5(0 to 6,0 to 5)As Integer
A:42 B:30 C:37 D:36
以下程序的输出结果是( )。
#inClude<stdio.h>
main( )
int a,b,d=241;
a=d/100%9;
b=(-1)&&(+1);
printf("%d,%d",a,b);
A:6,1 B:2,1 C:6,0 D:2,0
有以下程序:
main( )
int a,b,d=25;
a=d/10%9;b=a&&(-1);
printf("%d,%d/n",a,b);
程序运行后的输出结果是______。
A:6,1 B:2,1 C:6,0 D:2,0
有以下程序 main( ) { int a,b,d=25; a=d/10%9; b=a&&(-1); printf("%d,%d/n",a,b); } 程序运行后的输出结果是
A:6,1 B:2,1 C:6,0 D:2,0
用下列语句定义数组的元素个数是( )。 Option Base 1 Dim Arr5(0 to 6,0 to 5)As Integer
A:42 B:30 C:37 D:36
有以下程序:
main( )
{int a,b,d=25;
a=d/10%9;
b=a&&(-1);
printf("%d,%d/n",a,b);
}
程序运行后的输出结果是【 】。
A:6,1 B:2,1 C:6,0 D:2,0