//练习1: function hhh(a,b,c,d){ var max; max=(a>b)?a:b; max=(max>c)?max:c; return max; } document.write(hhh(5,21,63,0));