• 2022-07-24
    不查表, 给出下列氢原子波函数的角度部分 Y (不需要归一化)  [tex=1.429x1.214]z8ldU9t9uY8DDNmk5SLwrQ==[/tex] 
  • [tex=22.0x2.429]ZVDEh1E5A5TRdIGB3qa11g+hOg3gPjr2iZ0Cn5Mx/34n2wXIxLZJdkn/Jh4yoSa/a5KqOBTZJmFQsQCZXNMEhKPplqWPxxAqv0Dc48ekpBNteuVXT2CpJrWVxJCA8XSq59mOi6Kap35h9D5h46rXBDOXHDizCOI4GTcut/A4TvY=[/tex]

    内容

    • 0

      【单选题】下面程序的运行结果是 () 。 void main() { int x=7,y=8,z=9; if(x>y) x=y,y=z; z=x; printf("x=%d y=%d z=%d ",x,y,z); } A. x=7 y=8 z=7 B. x=7 y=9 z=7 C. x=8 y=9 z=7 D. x=8 y=9 z=8

    • 1

      下列程序段的执行结果是( )。 x = 5: y = 7: z = 8 If x < y Then t = x: x = y: y = t End If If y < z Then t = y: y = z: z = t If x < y Then t = x: x = y: y = t End If End If Print x, y, z A: 8 5 7 B: 8 7 5 C: 5 7 8 D: 7 5 8

    • 2

      下列程序的运行结果是().main(){intx=-9,y=5,z=8;if(x

    • 3

      写出下面程序运行结果。 public class Demo { public static void main(String args[]) { int x = 9, y = 11, z = 8; int t, w; t = x > y ? x : y + x; w = t > z ? t : z; System.out.println(w); } }

    • 4

      为三个整型变量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