• 2022-06-15 问题

    ‏var t = 10; ‌‏function test(test){ ‌‏ t = t + test; ‌‏ console.log(t);‌‏ var t = 3; ‌‏} ‌‏test(t); ‌‏console.log(t); ‌‏运行结果是( )?‌‏‌ A: 3 3 B: 3 10 C: NaN 10 D: NaN 3

    ‏var t = 10; ‌‏function test(test){ ‌‏ t = t + test; ‌‏ console.log(t);‌‏ var t = 3; ‌‏} ‌‏test(t); ‌‏console.log(t); ‌‏运行结果是( )?‌‏‌ A: 3 3 B: 3 10 C: NaN 10 D: NaN 3

  • 2022-06-15 问题

    以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;

    以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;

  • 2022-06-15 问题

    以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;

    以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;

  • 2022-06-26 问题

    对于一个3位的正整数m,取出它的个位数字t(t为整型)的表达式是______。 A: t=m/100%10 B: t=(m-m/100*100)%10 C: t=m/lO%10 D: t=m/10

    对于一个3位的正整数m,取出它的个位数字t(t为整型)的表达式是______。 A: t=m/100%10 B: t=(m-m/100*100)%10 C: t=m/lO%10 D: t=m/10

  • 2022-06-15 问题

    145.var t = 10; function test(test){ t = t + test; console.log(t); var t = 3; } test(t); console.log(t); 运行结果是( )?

    145.var t = 10; function test(test){ t = t + test; console.log(t); var t = 3; } test(t); console.log(t); 运行结果是( )?

  • 2022-06-12 问题

    类T的定义如下,不会出现编译错误的是________。 class T { public: T(int ix){ x=ix;} ~T( ){ } private: int x; }; A: T tObj; B: T *pObj = new T(); C: T tObj = *new T(10); D: T tObj=new T(10);

    类T的定义如下,不会出现编译错误的是________。 class T { public: T(int ix){ x=ix;} ~T( ){ } private: int x; }; A: T tObj; B: T *pObj = new T(); C: T tObj = *new T(10); D: T tObj=new T(10);

  • 2022-06-01 问题

    根据储量计算结果及等级化标准,对储量规模进行评价,油田储量()的储量规模为大规模。 A: >10×10<sup>8</sup>t B: 为1×10<sup>8</sup>t~10×10<sup>8</sup>t C: 为0.01×10<sup>8</sup>t~1×10<sup>8</sup>t D: 为0.01×10<sup>8</sup>t~0.1×10<sup>8</sup>t

    根据储量计算结果及等级化标准,对储量规模进行评价,油田储量()的储量规模为大规模。 A: >10×10<sup>8</sup>t B: 为1×10<sup>8</sup>t~10×10<sup>8</sup>t C: 为0.01×10<sup>8</sup>t~1×10<sup>8</sup>t D: 为0.01×10<sup>8</sup>t~0.1×10<sup>8</sup>t

  • 2022-06-15 问题

    vart=10;functiontest(test){t=t+test;console.log(t);vart=3;}test(t);console.log(t);运行结果是()? A: 3  3 B: NaN 10 C: NaN  3 D: 3  10

    vart=10;functiontest(test){t=t+test;console.log(t);vart=3;}test(t);console.log(t);运行结果是()? A: 3  3 B: NaN 10 C: NaN  3 D: 3  10

  • 2021-04-14 问题

    函数=if(8>10,”T”)的返回结果是T

    函数=if(8>10,”T”)的返回结果是T

  • 2022-07-28 问题

    若元组T=(2,4,6,8),下列表达式运算结果不为10的是________。 A: T[0]+T[3] B: T[-1]+T[-4] C: T[1]+T[2] D: T[-1]+T[-3]

    若元组T=(2,4,6,8),下列表达式运算结果不为10的是________。 A: T[0]+T[3] B: T[-1]+T[-4] C: T[1]+T[2] D: T[-1]+T[-3]

  • 1 2 3 4 5 6 7 8 9 10