leetcode1281 整数的各位积和之差

Posted Joel_Wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1281 整数的各位积和之差相关的知识,希望对你有一定的参考价值。

 

 

class Solution {
public:
    int subtractProductAndSum(int n) {
        int add=0; int prod=1;
        while(n>0){
            int r=n%10;
            n/=10;
            prod*=r;
            add+=r;
        }
        int res=prod-add;
        return res;
    }
};

 

 

以上是关于leetcode1281 整数的各位积和之差的主要内容,如果未能解决你的问题,请参考以下文章

1281. 整数的各位积和之差

算法1281. 整数的各位积和之差(java / c / c++ / python / go / rust)

算法1281. 整数的各位积和之差(java / c / c++ / python / go / rust)

1281. 整数的各位积和之差

21天LeetCode打卡,第18天,整数的各位积和之差

算法2103. 环和杆(java / c / c++ / python / go / rust)