单项选择题

var i = 12;
if (i > 25)
alert("Greater than 25.");
else {
alert("Less than or equal to 25."); 块中的语句
} 以上程序输出结果是()

A."Greater than25."
B."Less than or equal to 25."
C.报错
D.undefined