我正在尝试撰写dropLastDigit :: Integer -> Integer
例如dropLastDigit 123 == 12
和dropLastDigit
,任何一位数都会返回0
答案 0 :(得分:8)
只需将数字除以10即可。
dropLastDigit :: Integer -> Integer
dropLastDigit n = div n 10
答案 1 :(得分:0)
dropLastDigit :: Integer -> Integer
dropLastDigit n
| (abs n) < 10 = 0
| otherwise = read $ init $ show n