dim a,b,c a =inputbox ("請輸入0-99的整數且不能重復更不要用漢字和字母") b =inputbox ("請輸入0-99的整數且不能重復更不要用漢字和字母") c =inputbox ("請輸入0-99的整數且不能重復更不要用漢字和字母") if not(IsNUmberic(a) and IsNUmberic(b) and IsNUmberic(c)) then msgbox "不乖哦>_<" else if a<b then d=b b=a a=d end if if c>b then d=b b=c c=a end if if a<b then d=b b=a a=d end if msgbox a & " " & b & " " & c end if