给你一个整数 n,请你帮忙计算并返回该整数「各位数字之积」与「各位数字之和」的差。
示例 1:
输入:n = 234
输出:15
解释:
各位数之积 = 2 * 3 * 4 = 24
各位数之和 = 2 + 3 + 4 = 9
结果 = 24 - 9 = 15
思路
1,利用和10求余,得出每位的数字
2,分别相加,相乘
代码
public int subtractProductAndSum(int n) { if(n < 10){ return 0; } int mult = 1; int sum = 0; while (n > 0){ int i = n % 10; mult *= i; sum += i; n /= 10; } int result = mult - sum; return 0; }
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subtract-the-product-and-sum-of-digits-of-an-integer
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。