单项选择题

function f(y) {
var x=y*y;
return x;
}
for(x=0;x
y=f(x);
document.writeln(y);
}
输出的结果是()

A.0 1 2 3 4
B.0 1 4 9 16
C.0 1 9 4 16
D.以上答案都不对