• 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-05-29 问题

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

    下列哪个表达式表示n能被3整除同时也能被7整除()。 A: n%3==0&&n%7==0 B: n%3==0||n%7==0 C: n%21==0 D: n%3!=0&&n%7!=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]

  • 2021-04-14 问题

    【单选题】请用地点定桩法在4分钟内记忆数字。 4 0 1 3 6 3 5 1 9 8 8 9 7 2 9 3 0 9 5 3 1 7 7 5 2 3 3 0 5 0 1 4 1 3 8 3 5 7 9 7 (5.0分) A. 已背 B. 未背

    【单选题】请用地点定桩法在4分钟内记忆数字。 4 0 1 3 6 3 5 1 9 8 8 9 7 2 9 3 0 9 5 3 1 7 7 5 2 3 3 0 5 0 1 4 1 3 8 3 5 7 9 7 (5.0分) A. 已背 B. 未背

  • 2022-05-29 问题

    有以下程序: void swapl(int c[]) int t; t=c[0]; c[0]=c[1]; c[1]=t; void swap2int c0, int c1) int t; t=c0; c0=c1; c1=t; main() int a[2]=3,5, b[2]=3,5; swap1 ( A: ; swap2 (b[0],b[1]); B: printf("%d %d %d %d\n",a[0],a[1],b[0],b[1]); C: 其输出结果是A) 5 3 5 3 D: 5 3 3 5 E: 3 5 3 5 F: 3 5 5 3

    有以下程序: void swapl(int c[]) int t; t=c[0]; c[0]=c[1]; c[1]=t; void swap2int c0, int c1) int t; t=c0; c0=c1; c1=t; main() int a[2]=3,5, b[2]=3,5; swap1 ( A: ; swap2 (b[0],b[1]); B: printf("%d %d %d %d\n",a[0],a[1],b[0],b[1]); C: 其输出结果是A) 5 3 5 3 D: 5 3 3 5 E: 3 5 3 5 F: 3 5 5 3

  • 2021-04-14 问题

    【单选题】下列给定程序中,函数fun的功能是:有N×N矩阵,根据给定的m(m<=N)值,将每行元素中的值均向右移动m个位置,左位置为0。例如,N=3,m=2,有下列矩阵 1 2 3 4 5 6 7 8 9 程序执行结果为 0 0 1 0 0 4 0 0 7 #include #define N 4 void fun(int (*t)[N], int m) { int i, j; for(i=0; i { for(j=N-1-m; j>=0; j--) t[i][j+m ]=t[i][j]; /**********found**********/ for(j=0; j t[i][j]=0; } } main() { int t[][N]={21,12,13,24,25,16,47,38,29,11,32,54,42,21,33,10}, i, j, m; printf(" The original array: "); for(i=0; i { for(j=0; j printf("%2d ",t[i][j]); printf(" "); A. i B. m C. j D. N

    【单选题】下列给定程序中,函数fun的功能是:有N×N矩阵,根据给定的m(m<=N)值,将每行元素中的值均向右移动m个位置,左位置为0。例如,N=3,m=2,有下列矩阵 1 2 3 4 5 6 7 8 9 程序执行结果为 0 0 1 0 0 4 0 0 7 #include #define N 4 void fun(int (*t)[N], int m) { int i, j; for(i=0; i { for(j=N-1-m; j>=0; j--) t[i][j+m ]=t[i][j]; /**********found**********/ for(j=0; j t[i][j]=0; } } main() { int t[][N]={21,12,13,24,25,16,47,38,29,11,32,54,42,21,33,10}, i, j, m; printf(" The original array: "); for(i=0; i { for(j=0; j printf("%2d ",t[i][j]); printf(" "); A. i B. m C. j D. N

  • 2022-05-29 问题

    ‏对于如下双矩阵博弈模型 ‏ ‏L‏M‏R‏T‏7, 0‏0, 5‏0, 3‏M‏5, 0‏2, 2‏5, 0‏B‏0, 7‏0, 5‏7, 3‏‏ 采用重复剔除严格劣策略方法(提示:可考虑被混合策略严格优于),该博弈的纳什均衡为( )‏ A: (2,2) B: (M,M) C: (7,3) D: (B,R)

    ‏对于如下双矩阵博弈模型 ‏ ‏L‏M‏R‏T‏7, 0‏0, 5‏0, 3‏M‏5, 0‏2, 2‏5, 0‏B‏0, 7‏0, 5‏7, 3‏‏ 采用重复剔除严格劣策略方法(提示:可考虑被混合策略严格优于),该博弈的纳什均衡为( )‏ A: (2,2) B: (M,M) C: (7,3) D: (B,R)

  • 2022-05-29 问题

    ​对于如下双矩阵博弈模型 ‌ ‌L‌M‌R‌T‌7, 0‌0, 5‌0, 3‌M‌5, 0‌2, 2‌5, 0‌B‌0, 7‌0, 5‌7, 3‌​ 采用重复剔除严格劣策略方法(提示:可考虑被混合策略严格优于),该博弈的纳什均衡为( )‌ A: (2,2) B: (M,M) C: (7,3) D: (B,R)

    ​对于如下双矩阵博弈模型 ‌ ‌L‌M‌R‌T‌7, 0‌0, 5‌0, 3‌M‌5, 0‌2, 2‌5, 0‌B‌0, 7‌0, 5‌7, 3‌​ 采用重复剔除严格劣策略方法(提示:可考虑被混合策略严格优于),该博弈的纳什均衡为( )‌ A: (2,2) B: (M,M) C: (7,3) D: (B,R)

  • 2021-04-14 问题

    有以下程序 void f(int n, int *r) { int rl=0; if (n%3==0) r1=n/3; else if(n%5==0) r1=n/5; else f(--n, &r1); *r=r1; } main( ) { int m=7, r; f(m,&r); printf("%d", r); } 程序运行后的输出结果是( ).

    有以下程序 void f(int n, int *r) { int rl=0; if (n%3==0) r1=n/3; else if(n%5==0) r1=n/5; else f(--n, &r1); *r=r1; } main( ) { int m=7, r; f(m,&r); printf("%d", r); } 程序运行后的输出结果是( ).

  • 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&lt;1000);} A: i/5==2&amp;&amp;i/7==3 j/5==0 B: i%5==2&amp;&amp;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&lt;1000);} A: i/5==2&amp;&amp;i/7==3 j/5==0 B: i%5==2&amp;&amp;i%7==3 j%5==0 C: i/5==2andi/7==3 j/5==0 D: i%5==2andi%7==3 j%5==0

  • 1 2 3 4 5 6 7 8 9 10