• 2021-04-14
    定义了一个函数文件test.m: function fout=test(a,b,c) if nargin==1 fout=2*a; elseif nargin==2 fout=2*(a+b); elseif nargin==3 fout=2*(a.*b.*c); end 在命令行窗口调用test函数的结果为( )。 >> test(1:3,[-1,0,3])
  • 0 4 12

    内容

    • 0

      下列代码的运行结果是______ <script> var x = 1; function test() { var x = 2; y = 3; document.write(x); } test(); document.write(x); document.write(y); </script>

    • 1

      class Test{int x;static int y;static void Main(){Test t = new Test();t.x = 1;t.y = 1;test.x = 1;test.y = 1;}}以上程序中共有几句错误() A: 1 B: 2 C: 3 D: 4

    • 2

      指出代码输出的各个结果: console.log(test); function test(test){ console.log(test); var test=234; console.log(test); function test(){} } test(1); var test=123;

    • 3

      下述选项中,______可以实现每隔1秒钟调用一次test()函数的功能。 A: setTimeout("test()", 1) B: setTimeout("test()", 1000) C: setInterval("test()", 1) D: setInterval("test()", 1000)

    • 4

      下列程序的输出结果为:Sub test()m = 1n = 2 If m * n &#91; 1 Then n = n - 2 Else n = n + 2Debug.Print n - m &#93; 0End Sub A: False B: True C: 3>0 D: 1