已知椭圆的一焦点坐标为(-3,0),一顶点坐标为(0,5),则该椭圆的标准方程为( )
A: x²/9+y²/25=1
B: x²/34+y²/25=1
C: x²/25+y²/9=1
D: x²/25+y²/34=1
A: x²/9+y²/25=1
B: x²/34+y²/25=1
C: x²/25+y²/9=1
D: x²/25+y²/34=1
举一反三
- 阅读下面的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: 以上答案都不对
- 有代码片段: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代码: <;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: 以上答案都不对
- 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