问题标题: 酷町堂:整数处理

0
0
凤木夕
凤木夕
修练者
修练者

题目链接: 酷町堂:2659

  • #include<bits/stdc++.h>
  • using namespace std;
  • int n; int cnt;
  • int main()
  • {
  • cin>>n;
  • if(n%10==5)
  • {
  • int s=1;
  • while(s!=n) {
  • s*=5; cnt++;
  • }
  • }
  • else
  • {
  • while(n!=0)
  • {
  • if(n%10==0)
  • {
  • cnt++;
  • } n/=10;
  • }
  • }
  • cout<<cnt; return 0;
  • }
  • 哪错了
我要回答