Task Description
給定一個陣列N,找出N的中位數。
Note1: 中位數是指一組數字的中間數字;即是有一半數字的值大於中位數,而另一半數字的值小於中位數。
Note2: 請注意不可直接呼叫sort()、sorted()排序方法。
Input Format
陣列N包含5個整數,N不一定經過排序。
Output Format
印出N的中位數。
Sample Input
1 2 3 4 5
Sample Output
3
Task Description
給定一個陣列N,找出N的中位數。
Note1: 中位數是指一組數字的中間數字;即是有一半數字的值大於中位數,而另一半數字的值小於中位數。
Note2: 請注意不可直接呼叫sort()、sorted()排序方法。
Input Format
陣列N包含5個整數,N不一定經過排序。
Output Format
印出N的中位數。
Sample Input
1 2 3 4 5
Sample Output
3