已知f=lambda x,y:x**y,则f(**{“x”:3,”y”:4})的值是:( )。
A: 12
B: 9
C: 81
D: 16
A: 12
B: 9
C: 81
D: 16
举一反三
- 已知f=lambda x,y:x+y,则f([4],[1,2,3])的值是
- 阅读下面的JavaScript代码,输出结果是function f(y) {var x=y*y;return x;}for(x=0;x<; 5;x++) {y=f(x);document.writeln(y);} A: 0 1 4 9 16 25 B: 0 1 2 3 4 C: 答案都不对 D: 0 1 4 9 16
- 已知函数:void f(int a, int &b){a+=2; b+=2;},变量int x=3, y=5;,则以下说法正确的是( )。 A: 执行f(x,y)后,x的值是5 B: 执行f(x,y)后,x的值是3 C: 执行f(x,y)后,y的值是7 D: 执行f(x,y)后,y的值是5
- Read the following JavaScript code: function f(y) { var x=y*y; return x; } for(x=0;x< 5;x++) { y=f(x); document.writeln(y); } The output is ( ). A: 01 2 3 4 B: 0 1 4 9 16 C: 0 1 4 9 16 25 D: None of the above answers are correct
- 有代码片段:function f(y) {var x=y*y;return x;} for(var x=0;x< 5;x++) {y=f(x);document.writeln(y);}输出结果是( )。 A: 0 1 2 3 4 B: 0 1 4 9 16 C: 0 1 4 9 16 25 D: 0 1 2 3 4 5