为三个整型变量x,y,z分别赋值8,9,4,请输出其中的最大值的程序段为()
A: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@xset@m=@xelseset@m=@yif@mset@m=@zprint@m
B: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yset@m=@xelseset@m=@yif@m>@zset@m=@zprint@m
C: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yif@x>@zprint@xelseprint@zelseprint@y
D: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yset@m=@xelseset@m=@yif@mset@m=@zprint@m
A: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@xset@m=@xelseset@m=@yif@mset@m=@zprint@m
B: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yset@m=@xelseset@m=@yif@m>@zset@m=@zprint@m
C: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yif@x>@zprint@xelseprint@zelseprint@y
D: declare@xint,@yint,@zintdeclare@mintselect@x=8,@y=9,@z=4if@x>@yset@m=@xelseset@m=@yif@mset@m=@zprint@m
举一反三
- 为三个整型变量x,y,z分别赋值8,9,4,请输出其中的最大值的程序段为( ) A: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x B: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y set @m=@x else set @m=@y if @m>@z set @m=@z print @m C: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y if @x>@z print @x<br> else print @z else print @y D: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y set @m=@x else set @m=@y if @m
- 假定w、x、y、z、m均为int型变量,有如下程序段:w=1; x=2; y=3; z=4;m=(w<;x)?y:x;m=(m<;y)?m:z;m=(m<;=z)?m:z;则该程序段执行后,m的值是 A: 4 B: 3 C: 2 D: 1
- 已知NFA=({x,y,z},{0,1},M,{x},{z}),其中:M(x,0)={z},M(y,0)={x,y},,M(z,0)={x,z},M(x,1)={x},M(y,1)=φ,M(z,1)={y},构造相应的状态矩阵和最小DFA。
- 已知int x =3,y,z,m;y = + + x;z = - - y;m = y/z;则m =( )。 A: 0.5 B: 1 C: 1.5 D: 4/3
- 实战演练:请说明程序运行完后x,y,z,m,n的值分别是多少?x是____,y是____,z是____,m是____,n是____。main(){ int x=6,y,z,m,n; y=x++; z=++x; m=x/y; n=z%y; }