下面程序段的输出是
int x=-3, y=0;if (x >= 0)    if (x > 0)        y = 1;    else y = -1;printf("%d", y);
A、1
B、-1
C、0
D、不确定