单项选择题

分析下面的代码段,执行后的输出结果是()。
var x="15";
str=x+5;
A=parseFloat(str);
document.write(A);

A.20
B.20.0
C.NaN
D.155