• 2022-10-30 问题

    写一个文法G,使其语言为不以0开头的偶数集。 A: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|3|5||7|9|B B: G[S]:S→AB|BA→AD|CB→1|2|3|4|5|6|7|8|9C→2|4|6|8|0 C: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|2|3|4|5|6|7|8|9D→0|C D: G[S]:S→AB|BA→AD|DB→2|4|6|8|0D→1|2|3|4|5|6|7|8|9|0

    写一个文法G,使其语言为不以0开头的偶数集。 A: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|3|5||7|9|B B: G[S]:S→AB|BA→AD|CB→1|2|3|4|5|6|7|8|9C→2|4|6|8|0 C: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|2|3|4|5|6|7|8|9D→0|C D: G[S]:S→AB|BA→AD|DB→2|4|6|8|0D→1|2|3|4|5|6|7|8|9|0

  • 2022-06-09 问题

    以下代码的运行结果是( )。import numpy as np a=np.arange(8).reshape(2,4) s=a.sum(axis=0) print(s) A: [6 22] B: 28 C: 36 D: [4 6 8 10]

    以下代码的运行结果是( )。import numpy as np a=np.arange(8).reshape(2,4) s=a.sum(axis=0) print(s) A: [6 22] B: 28 C: 36 D: [4 6 8 10]

  • 2021-04-14 问题

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

  • 2022-06-18 问题

    s="abcd'12'34",下面()可以输出字符'12'34。 A: s[5:8] B: s[4:8] C: s[-1:-6] D: s[-6:]

    s="abcd'12'34",下面()可以输出字符'12'34。 A: s[5:8] B: s[4:8] C: s[-1:-6] D: s[-6:]

  • 2022-06-12 问题

    写出以下程序的运行结果:int main(){ int m,s,i; for(m=6;m<8;m++){ s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m);}return 0;}

    写出以下程序的运行结果:int main(){ int m,s,i; for(m=6;m<8;m++){ s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m);}return 0;}

  • 2022-05-29 问题

    (16) 下面循环的执行次数是( )char *s="\ta\018bc";for(;*s!='\0';s++)printf("*"); A: 5 B: 8 C: 7 D: 6

    (16) 下面循环的执行次数是( )char *s="\ta\018bc";for(;*s!='\0';s++)printf("*"); A: 5 B: 8 C: 7 D: 6

  • 2022-06-15 问题

    写出下列指令运行结果A=reshape(1:16,2,8)reshape(A,4,4)s=&#91;1 3 6 8 9 11 14 16&#93;;A(s)=0

    写出下列指令运行结果A=reshape(1:16,2,8)reshape(A,4,4)s=&#91;1 3 6 8 9 11 14 16&#93;;A(s)=0

  • 2021-04-14 问题

    【单选题】rev(c(1,3,2,6,7,8,8,1,1,0))的运行结果 ? A. [1] 0 1 1 1 2 3 6 7 8 8 B. [1] 1 3 2 6 7 8 8 1 1 0 C. [1] 0 1 1 8 8 7 6 2 3 1 D. [1] 8 8 7 6 3 2 1 1 1 0

    【单选题】rev(c(1,3,2,6,7,8,8,1,1,0))的运行结果 ? A. [1] 0 1 1 1 2 3 6 7 8 8 B. [1] 1 3 2 6 7 8 8 1 1 0 C. [1] 0 1 1 8 8 7 6 2 3 1 D. [1] 8 8 7 6 3 2 1 1 1 0

  • 2021-04-14 问题

    2 定义以下结构体数组  structc intx    inty s 2 2 4 6 8  语句printf d s 0 y s 1 x 的结果是

    2 定义以下结构体数组  structc intx    inty s 2 2 4 6 8  语句printf d s 0 y s 1 x 的结果是

  • 2021-04-14 问题

    执行如下程序段,变量s的值为( )。 int a=1, b=2,c=6,s ; if ( a<=b || c++<0 || b++ 第一空: 8

    执行如下程序段,变量s的值为( )。 int a=1, b=2,c=6,s ; if ( a<=b || c++<0 || b++ 第一空: 8

  • 1 2 3 4 5 6 7 8 9 10