问题标题: 2002   5和0的统计

0
1

0
已采纳
薛新奥
薛新奥
新手光能
新手光能

题目内容是什么?

0
高亮节
高亮节
资深守护
资深守护
if (n%10==5) 
    {
        int s=0;
        while (n%10==5 || n%10==0) 
        {
            s++;
            n/=5;
        }
        cout<<s<<endl;
    } 
    else 
    {

0
梁锦程
梁锦程
高级光能
高级光能
if (n%10==5) 
    {
        int s=0;
        while (n%10==5 || n%10==0) 
        {
            s++;
            n/=5;
        }
        cout<<s<<endl;
    } 
    else 
    {
        while (n!=0)
        {
            int s=100;
            s=n%10;
            n/=10;
            if (s==0) t++;
        }
        cout<<t<<endl;
    }
0
我要回答