Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

1281. Subtract the Product and Sum of Digits of an Integer leetcode solution in c++

#include<iostream>
using namespace std;

class Solution {
public:
	int subtractProductAndSum(int n) {
		int product = 1;
		int sum = 0;
		while (n != 0)
		{
			product *= (n % 10);
			sum += (n % 10);
			n /= 10;
		}
		return product - sum;
	}
};

int main()
{
	int n;
	cin >> n;
	Solution ss;
	cout << ss.subtractProductAndSum(n) << "
";
	return 0;
}
Source by codejudge.blogspot.com #
 
PREVIOUS NEXT
Tagged: #Subtract #Product #Sum #Digits #Integer #leetcode #solution
ADD COMMENT
Topic
Name
4+5 =