用C语言计算正整数的各位上的数字之积
时间: 2024-06-06 21:07:37 浏览: 64
计算机二级c 上机考试题库80题答案.docx
#include <stdio.h>
int main()
{
int n, product = 1;
printf("请输入一个正整数:");
scanf("%d", &n);
while(n != 0)
{
int digit = n % 10;
if(digit != 0)
{
product *= digit;
}
n /= 10;
}
printf("正整数的各位上的数字之积为:%d\n", product);
return 0;
}
阅读全文