货币类型:money money类型存储固定小数精度的货币数字,小数的精度由数据库的lc_monetary设置决定。windows系统下,该配置项位于/data/postgresql.conf文件中,默认配置如下, lc_monetary Chinese (Simplified)_Chi…
文章目录 一、题目二、题解 一、题目
Given an integer num, repeatedly add all its digits until the result has only one digit, and return it.
Example 1:
Input: num 38 Output: 2 Explanation: The process is 38 --> 3 8 --> 11 11 --> 1 1 --> 2 S…