Find Absolute Value
題目說明
輸出一整數的絕對值
輸入限制: 數字
輸入
一整數
輸出
整數之絕對值
sample input1
7
sample output1
7
sample input2
-5
sample output2
5
sample input13
0
sample output3
0
'Math.abs(數值);'
輸出一整數的絕對值
一整數
整數之絕對值
7
7
-5
5
0
0
'Math.abs(數值);'
Comments