2023-08-09力扣每日一题

链接:

1281. 整数的各位积和之差

题意:

十进制每一位的积减去每一位的和

解:

十进制位处理

实际代码:

#include
using namespace std;
int subtractProductAndSum(int n)
{
    int t1=1,t2=0;
    while(n)
    {
        t1*=n%10;
        t2+=n%10;
        n/=10;
    }
    //cout<>n;
    int ans=subtractProductAndSum(n);
    cout<

限制:

  • 1 <= n <= 10^5

你可能感兴趣的:(力扣每日一题,leetcode)