5. 如果a, b, c的初始值都是 123,下列虛擬程式碼執行後,資料值最大之變數為 _____。 if a+b>c then c=a+b else c=a-b if a>b+c then b=a-c else b=a+c if b-a>c+a then c=b-a else c=a+b if a+b<c then a=b+c else c=b-a