• 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-19 问题

    优质汽车清洁香波的PH值应当为()。 A: 55~65 B: 65~70 C: 70~75 D: 75~80

    优质汽车清洁香波的PH值应当为()。 A: 55~65 B: 65~70 C: 70~75 D: 75~80

  • 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]

  • 2022-06-19 问题

    优质汽车清洁香波的PH值应当为()。 A: A55~65 B: B65~70 C: C70~75 D: D75~80

    优质汽车清洁香波的PH值应当为()。 A: A55~65 B: B65~70 C: C70~75 D: D75~80

  • 2022-05-30 问题

    下列程序输出的结果是( )。 int main(){ int a=7,b=5; printf("%d\n",b=b%a); } A: 2 B: 5 C: 7 D: 0

    下列程序输出的结果是( )。 int main(){ int a=7,b=5; printf("%d\n",b=b%a); } A: 2 B: 5 C: 7 D: 0

  • 2022-06-18 问题

    在VB中,要表示条件x是5或7的倍数应采用的表达式为_______。 A: x\5 or x\7 B: x mod 5=0 and x mod 7=0 C: x mod 5=0 or x mod 7=0 D: x\5 and x\7

    在VB中,要表示条件x是5或7的倍数应采用的表达式为_______。 A: x\5 or x\7 B: x mod 5=0 and x mod 7=0 C: x mod 5=0 or x mod 7=0 D: x\5 and x\7

  • 2022-05-30 问题

    下列程序的输出结果是main(){ int a=7,b=5; printf("%d\n",b/a); } A: 0 B: 5 C: 1 D: 0.7

    下列程序的输出结果是main(){ int a=7,b=5; printf("%d\n",b/a); } A: 0 B: 5 C: 1 D: 0.7

  • 2022-06-11 问题

    17-8-3[    ] A: 5 B: 6 C: 7

    17-8-3[    ] A: 5 B: 6 C: 7

  • 2022-07-25 问题

    下面程序的功能是用do-while语句求1至1000之间满足"用5除余2;且用7除余3"的数,且一行只打印五个数。程序中问号处应填写的语句是()。 #include main(){ int i=1,j=0;Do{if(?) {printf("%4d",i); j=j+1; if(?) printf("\n"); } i=i+1; }while(i<1000);} A: i/5==2&&i/7==3 j/5==0 B: i%5==2&&i%7==3 j%5==0 C: i/5==2andi/7==3 j/5==0 D: i%5==2andi%7==3 j%5==0

    下面程序的功能是用do-while语句求1至1000之间满足"用5除余2;且用7除余3"的数,且一行只打印五个数。程序中问号处应填写的语句是()。 #include main(){ int i=1,j=0;Do{if(?) {printf("%4d",i); j=j+1; if(?) printf("\n"); } i=i+1; }while(i<1000);} A: i/5==2&&i/7==3 j/5==0 B: i%5==2&&i%7==3 j%5==0 C: i/5==2andi/7==3 j/5==0 D: i%5==2andi%7==3 j%5==0

  • 2022-05-30 问题

    下列程序的输出结果是().main(){int a=7,b=5;printf("%d\n",b=b/a);} A: 0 B: 5 C: 1 D: 不确定

    下列程序的输出结果是().main(){int a=7,b=5;printf("%d\n",b=b/a);} A: 0 B: 5 C: 1 D: 不确定

  • 1 2 3 4 5 6 7 8 9 10