对于给定的正整数n求它的位数及其各位数字之和

时间:2023-09-22 13:06:15 来源:
导读 您好,现在蔡蔡来为大家解答以上的问题。对于给定的正整数n求它的位数及其各位数字之和相信很多小伙伴还不知道,现在让我们一起来看看吧!1、...

您好,现在蔡蔡来为大家解答以上的问题。对于给定的正整数n求它的位数及其各位数字之和相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、#includeint main(){ printf("input an integer:"); int n = 0; scanf("%d",&n); int sum = 0; int i = 1; //求出自数的位数 for (;;i++) { n = n / 10; if(n == 0) break; } n = nBak; for(;;) { int tempa = 1; for(int j = 0;j < i; j++ ) { tempa *= n % 10; } sum += tempa; n = n / 10; if(n == 0) break; } printf("count:=%d, sum= %d",i,sum);return 0; }。

本文就为大家分享到这里,希望小伙伴们会喜欢。

标签:
最新文章