2.以下程序为输出1~100满足每位数的乘积大于每位数的和的数。(c语言程序填空)

#include"stdio.h"
main()
{
int n,k=1,s=0,m;
for(n=1;n<=100;n++)
{
k=1;s=0;
m=n;
while(________________)
{
k*=m%10;
s+=m%10;
______________;
}
if(k>s) printf("%d",n);
}
}
#include"stdio.h"
main()
{
   int 森樱n,k=1,s=0,m;
for(n=1;n<=100;n++)
     {
        k=1;s=0;
       m=n;
     while(m)//也可以是m!=0 一个效此旅丛果
            {
                k*=m%10;
               s+=m%10;
               m/=10;//或者m=m/10;
           镇袜}
     if(k>s)      printf("%d",n);
     }
}