1281. Subtract the Product and Sum of Digits of an Integer

class Solution {
public:
    int subtractProductAndSum(int n) {
        int sum=0;
        int multiple=1;
        while(n!=0){
            sum += n%10;
            multiple *= n%10;
            n = n/10;
        }
        //cout<

你可能感兴趣的:(leetcode,leetcode)