网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

A点的高斯坐标为xA=112240m,yA=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()

  • A、11带,66
  • B、11带,63
  • C、19带,117
  • D、19带,111

参考答案

更多 “A点的高斯坐标为xA=112240m,yA=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()A、11带,66B、11带,63C、19带,117D、19带,111” 相关考题
考题 ( 27 )要想在过程 Proc 调用后返回形参 x 和 Y 的变化结果,下列定义语句中正确的是A ) Sub Proc ( x as Integer,y as Integer )B ) Sub Proc ( ByVal x as Integer, y as Integer )C ) Sub Proc ( x as Integer,Byval y as Integer )D ) Sub Proc ( Byval x as Integer, Byval y as Integer )

考题 有以下程序:int sub(int n) { return(n/10+n%10); }void main(){ int x,y; scanf("%d",x); y=sub(sub(sub(x))); printf("%d\n",y);}若运行时输入:4321回车,程序的输出结果是。

考题 下列过程定义语句中,形参个数为不确定数量的过程是( )。A.Private Sub Pro3(x As Double,y As Single)B.Private Sub Pro3(Arr(3),Option x,Option y)C.Private Sub Pro3(ByRef x,ByVal y,Arr( ))D.Private Sub Pro3(ParamArray Arr( ))

考题 ( 25 )要求当鼠标在图片框 P1 中移动时,立即在图片框中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是A )Private Sub P1_MouseMove ( Button AS Integer,Shift As Integer,X As Single,Y As Single )Print X,YEnd SubB )Private Sub P1_MouseDown ( Button AS Integer,Shift As Integer,X As Single,Y As Single )Picture.Print X,YEnd SubC )Private Sub P1_MouseMove ( Button AS Integer,Shift As Integer,X As Single,Y As Single )P1.Print X,YE n d S u bD )Private Sub Form_MouseMove ( Button AS Integer,Shift As Integer,X As Single,Y As Single )P1.Print X,YEnd Sub

考题 要求当鼠标在图片框P1中移动时,立即在图片框中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是A.Private Sub P1_MouseMove(Button As Integer,Shift As Integer,x As Single,Y As Single) Print X,Y End SubB.Private Sub P1_M0useDown(Button As Integer,Shift As Integer,X As Single,Y As Single) Picture.Print X,Y End SubC.Private Sub P1_MouscMove(Button As integer,Shift As Integer,X As Single,Y As Single) P1.Print X.Y End SubD.Private Sub Form_MouseMove(Button As Integer,Shift As Integer,x As Single,Y As Single) P1.Print X.Y End Sub

考题 以下过程的定义中,( )是错误的。 A、Public Sub Sum(x ; y)B、Public Sub Sum(ByVal x, ByVal y)C、Public Sub Sum(x As Integer,y As Integer)D、Public Sub Sum(x%, y%)

考题 下面各被调用函数首部书写正确的是( )A.void sub(float x;float y);B.void sub(float x,y)C.void sub(float x,float y)D.void sub(float x,float y);

考题 Command1_Click()事件代码如下: Private Sub Command1_Click() Dim x As Integer, Y As Integer x = 6 : Y : 8 Call ABC(X, Y) Print X; Y End Sub Private Sub ABC(ByVal X As Integer,Y As Integer) X = X + 4 Y = Y = 2 End Sub 事件发生后,X和Y的值分别为 ______。A.6, 8B.10, 10C.10, 8D.6, 10

考题 有以下程序:int sub(int n) { return(n/10+n%10); }main(){ int x, y;scanf("% d", x);y=sub(sub(sub(x)));printf("% d\n", y);}若运行时输入:1234<回车>,程序的输出结果是【 】。

考题 有如下程序: Private Sub Command1_Click() Dim a As Single Dim b As Single a=5:b=4 Call Sub1(a,b) End Sub Sub Sub1(x As Single,y As Single) t=X X=t\Y Y=t Mod y End Sub 在调用运行上述程序后,a和b的值分别为A.0 0B. 1 1C.2 2D.1 2

考题 若有以下变量和函数说明:includecharCh='*';void sub(int x,int y,char ch,double* 若有以下变量和函数说明: #include<iostream.h> charCh='*'; void sub(int x,int y,char ch,double*Z) { switch(ch) { case'+':*Z=x+y;break; case'-':*Z=x-y;break: case'*':*Z=x*y;break; case'/':*z=x/y;break: } } 以下合法的函数调用语句是( )。A.sub(10,20,Ch,y);B.sub(1.2+3,2*2,'+',Z);C.sub(sub(1,2,'+',y),sub(3,4'+',x),'-',y);D.sub(a,b,x,ch);

考题 有一个名称为Fom1的窗体,上面没有控件,设有以下程序(其中方法PSet(X,Y)的功能是在坐标X,Y处画一个点): Dim cmdmave As Boolean Private Sub Form_MouseDown(Button As Integer,Shift As Integer,X As Single,Y As Single) cmdmave=True End Sub Private Sub Form_MouseMove(Button AS Integer,Shift As Integer,X AS Single,Y As Single) If cmdmave Then Forml.PSet(X,Y) End lf End Sub Private Sub Form_MouseUp(Button As Integer,Shift As Integer,X As Single,Y As Single) cmdmave=False End Sub 此程序的功能是。 A.每按下鼠标键一次,在鼠标所指位置画一个点 B.按下鼠标键,则在鼠标所指位置画一个点;放开鼠标键,则此点消失 C.不按鼠标键而拖动鼠标,则沿鼠标拖动的轨迹画一条线 D.按下鼠标键并拖动鼠标,则沿鼠标拖动的轨迹画一条线,放开鼠标键则结束画线

考题 有如下程序。 Private Sub Commandl_Click() Dim a As Single Dim b As Single a=5:b=4 Call Sub1 ( a,B)End Sub Sub Subl(x As Single, y As Single) t=x x=t\y y = t Mod y End Sub 在调用运行上述程序后,a和b的值分别为A.0 0B.1 1C.2D.1 2

考题 假定有如下的Sub过程:Sub Sub1 (x As Single, y As Single) t=x x = t/y y = t Mod yEnd Sub 在窗体上画一个命令按钮,然后编写如下事件过程:Private Sub Command1_ Click() Dim a As Single Dim b As Single a = 5 b = 4 Sub1 a, b Print a; b End Sub 程序运行后,单击命令按钮,输出结果为______。A.5 4B.1 1C.1.2 5.4D.1.25 1

考题 要想在过程Proc调用后返回形参x和Y的变化结果,下列定义语句中正确的是( )。【考点5过程调用与参数传递】A.Sub Proc(x as Integer,Y as Integer)B.Sub Proc(ByVal x as Integer,Y as Integer)C.Sub Proc(x as Integer,ByVal Y as Integer)D.Sub Proc(ByVal x as Integer,ByVal Y as Integer)

考题 请选出以下程序的输出结果 ______。include sub(x, y, z)int x, y,*z;{*z=y-x:}main() 请选出以下程序的输出结果 ______。#include <stdio. h>sub(x, y, z)int x, y,*z;{*z=y-x:}main(){ int a, b, c; sub 10,5,a);sub(7,a,b);sub(a, b, c); printf("%d,% d,/%d\n", a, b, c);}A.5,2,3B.-5,-12,-7C.-5,-12,-17D.5,-2,-7

考题 (2018 年) 已知某点大地坐标为(B、 L) , 天文坐标为(λ、 φ) , 高斯平面直角坐标(x、 y) , 该点高斯投影坐标正算是指() 。A.(B、 L) 转换为(x、 y) B.(λ、 φ) 转换为(x、 y) C.(x、 y) 转换为(B、 L) D.(x、 y) 转换为(λ、 φ)

考题 某点6°带高斯坐标为X=3345678m,Y=19456789m,则下列叙述正确的是()。A:该点到坐标原点的距离为d=(X2+Y2)1/2=19742340m B:30带高斯坐标为X=3345678m,Y=19456789m C:30带高斯坐标为X=3345678m,Y=456789m D:所在30带中央子午线为111°,带号为37 E:30带实际平面坐标为X=3345678m,Y=-43211m

考题 已知某点大地坐标为(B、L),天文坐标为(λ、φ),高斯平面直角坐标(x、y),该点高斯投影坐标正算是指( )。A. (B、L)转换为(x、y) B. (λ、φ)转换为(x、y) C. (x、y)转换为(B、L) D. (x、y)转换为(λ、φ)

考题 A点的高斯坐标为XA/sub=112240m,Y=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()A、11带,66  B、11带,63  C、19带,117  D、19带,111

考题 A点的高斯坐标为X=112240m。YA/sub=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()A、11带,66B、11带,63C、19带,117D、19带,111

考题 以下定义的过程()是按“传值”方式传递参数的。A、Public Sub Sum(x,y)B、Public Sub Sum(ByVal x, ByVal y)C、Public Sub Sum(x As Integer,y As Integer)D、Public Sub Sum(x%, y%)

考题 A点的高斯坐标为X=112240m,Y=19343800m,则A点所在6度分带的带号及中央子午线的经度分别为().A、11带,东经66°B、11带,东经63°C、19带,东经117°D、19带,东经111°

考题 下列定义abc过程的语句,正确的是()A、Dim Sub abc(x,y)B、Public abc(x,y)C、Private Sub abc(x,y)As IntegerD、Sub abc(x,y)

考题 单选题A点的高斯坐标为XA/sub=112240m,Y=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()A 11带,66  B 11带,63  C 19带,117  D 19带,111

考题 单选题A点的高斯坐标为X=112240m。YA/sub=19343800m,则A点所在6°带的带号及中央子午线的经度分别为()A 11带,66B 11带,63C 19带,117D 19带,111

考题 单选题A点的高斯坐标为X=112240m,Y=19343800m,则A点所在6度分带的带号及中央子午线的经度分别为().A 11带,东经66°B 11带,东经63°C 19带,东经117°D 19带,东经111°

考题 单选题下列定义abc过程的语句,正确的是()A Dim Sub abc(x,y)B Public abc(x,y)C Private Sub abc(x,y)As IntegerD Sub abc(x,y)