双曲线x^2/16-y^2/9=1的渐近线方程为()
A: y=±16x/9
B: y=±9x/16
C: x/3±y/4=0
D: x/4±y/3=0
A: y=±16x/9
B: y=±9x/16
C: x/3±y/4=0
D: x/4±y/3=0
举一反三
- 有代码片段: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
- 阅读下面的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
- 阅读下面的JavaScript代码,执行结果为?function f(y) { var x = y * y; return x;}for(x = 0; x < 5; x++) { y = f(x); document.write(y+" ");} A: 0 1 2 3 4 B: 0 1 4 9 16 C: 0 1 4 9 16 25 D: 以上答案都不对
- 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
- 下面的JavaScript代码: <;script type="text/javascript">; function f(y){ var x=y*y;return x; } for(x=0;x<;5;x++){y=f(x);document.writeln(y);} <;/script>;输出结果是( )。 A: 0 1 2 3 4 B: 0 1 4 9 16 C: 0 1 4 9 16 25 D: 以上答案都不对