单项选择题

var a = 200;
function fun2(){
    console.log(a);
    var a = 100;
}
fun2();
输出结果()

A.undefined
B.报错
C.200
D.100