通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
当a=3,b=5,c=9,d=7时,执行下面的程序段后,x的值为( )。
if(a<b) if(c<d) x=4; else if(a<c) if(b<d) x=6; else x=8; else x=9; else x=14;