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

!!!题目地址!!!



int subtractProductAndSum(int n){
    int product = 1;
    int sum = 0;
    while(n != 0){
        product *= n%10;
        sum += n%10;
        n /= 10;
    }
    return product-sum;
}
posted @ 2022-05-18 00:37  ReaIms  阅读(13)  评论(0编辑  收藏  举报