以下程序运行后的输出结果是 【 8 】 。
main()
{ int x,a=1,b=2,c=3,d=4;
x=(a<b)?a:b; x=(x<c)?x:c; x=(d>x) ? x : d;
printf("%d\n",x);
}