• 2022-06-15 问题

    已知4x-3y-3z=0,x-3y+z=0(x≠0,y≠0,z≠0),那么x:y:z A: 4:3:9 B: 4:3:7 C: 12:7:9 D: 以上结论都不对

    已知4x-3y-3z=0,x-3y+z=0(x≠0,y≠0,z≠0),那么x:y:z A: 4:3:9 B: 4:3:7 C: 12:7:9 D: 以上结论都不对

  • 2022-06-01 问题

    阅读下面的java语言代码,输出结果是( )。 int x, y = 1, z=0; if( z < 0 ) x= 3; else if ( y == 0 ) x= 5; else x= 7; System.out.println(x+”,”+ y); A: 7, 0 B: 7, 1 C: 3, 3 D: 以上都不正确

    阅读下面的java语言代码,输出结果是( )。 int x, y = 1, z=0; if( z < 0 ) x= 3; else if ( y == 0 ) x= 5; else x= 7; System.out.println(x+”,”+ y); A: 7, 0 B: 7, 1 C: 3, 3 D: 以上都不正确

  • 2022-06-01 问题

    下面的C语言代码,输出结果是:( )int x, y, z;y=1;z=0;if ( z <; 0 ){x = 3;}else if ( y = = 0 ){x = 5;}else{x = 7;}printf("x=%d",x); A: x=3 B: x=5 C: x=7 D: x为随机数

    下面的C语言代码,输出结果是:( )int x, y, z;y=1;z=0;if ( z <; 0 ){x = 3;}else if ( y = = 0 ){x = 5;}else{x = 7;}printf("x=%d",x); A: x=3 B: x=5 C: x=7 D: x为随机数

  • 2021-04-14 问题

    下面的C语言代码,输出结果是: int x, y, z; y=1;z=0; if ( z < 0 ) { x = 3; } else if ( y = = 0 ) { x = 5; } else { x = 7; } printf("x=%d",x);

    下面的C语言代码,输出结果是: int x, y, z; y=1;z=0; if ( z < 0 ) { x = 3; } else if ( y = = 0 ) { x = 5; } else { x = 7; } printf("x=%d",x);

  • 2022-05-29 问题

    描述一个正整数n能同时被3,5和7同时整除的正确表达式为 A: n//3==0 and n//5==0 and n//7==0 B: n//3==0 or n//5==0 or n//7==0 C: n%3==0 and n%5==0 and n%7==0 D: n%3==0 or n%5==0 or n%7==0

    描述一个正整数n能同时被3,5和7同时整除的正确表达式为 A: n//3==0 and n//5==0 and n//7==0 B: n//3==0 or n//5==0 or n//7==0 C: n%3==0 and n%5==0 and n%7==0 D: n%3==0 or n%5==0 or n%7==0

  • 2022-06-12 问题

    intx=5,y=8,z=7;表达式z=!(x>y)||(x=1,y=3)计算后的结果 A: x=1,y=3,z=1 B: x=1,y=3,z=0 C: x=5,y=8,z=0 D: x=5,y=8,z=1

    intx=5,y=8,z=7;表达式z=!(x>y)||(x=1,y=3)计算后的结果 A: x=1,y=3,z=1 B: x=1,y=3,z=0 C: x=5,y=8,z=0 D: x=5,y=8,z=1

  • 2021-04-14 问题

    【单选题】Which of the following matrices does not have the same determinant of matrix B: [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -1, 0, -9,-5] A. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 0; -1, 0, -9, -5] B. [1, 3, 0, 2; -2, -5, 7, 4; 1, 0, 9, 5; -1, 0, -9, -5] C. [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -3, -5, -2, -1] D. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 1; -1, 0, -9, -5]

    【单选题】Which of the following matrices does not have the same determinant of matrix B: [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -1, 0, -9,-5] A. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 0; -1, 0, -9, -5] B. [1, 3, 0, 2; -2, -5, 7, 4; 1, 0, 9, 5; -1, 0, -9, -5] C. [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -3, -5, -2, -1] D. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 1; -1, 0, -9, -5]

  • 2021-04-14 问题

    (4分)3、xoy面的方程为( )。 A、x=0 B、y=0 C、z=0 D、z=1

    (4分)3、xoy面的方程为( )。 A、x=0 B、y=0 C、z=0 D、z=1

  • 2022-06-01 问题

    智慧职教: 阅读下面的C语言代码,输出结果是int x, y = 1, z=0;if ( z < 0 ) x = 3; else if ( y == 0 )x = 5; else x = 7;printf("%d, %d", x, y);

    智慧职教: 阅读下面的C语言代码,输出结果是int x, y = 1, z=0;if ( z < 0 ) x = 3; else if ( y == 0 )x = 5; else x = 7;printf("%d, %d", x, y);

  • 2022-05-29 问题

    下列哪个表达式表示n能被3整除同时也能被7整除()。 A: n%3==0&amp;&amp;n%7==0 B: n%3==0||n%7==0 C: n%21==0 D: n%3!=0&amp;&amp;n%7!=0

    下列哪个表达式表示n能被3整除同时也能被7整除()。 A: n%3==0&amp;&amp;n%7==0 B: n%3==0||n%7==0 C: n%21==0 D: n%3!=0&amp;&amp;n%7!=0

  • 1 2 3 4 5 6 7 8 9 10