码迷,mamicode.com
首页 > 其他好文 > 详细

zju 1115 Digital roots 数字根

时间:2014-08-02 01:30:32      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   2014   

 

bubuko.com,布布扣bubuko.com,布布扣

 

 

 

 

 

bubuko.com,布布扣

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

bubuko.com,布布扣
#include <iostream>
#include <string>
using namespace std;
int main()
{
   string n;
 while(cin>>n,n!="0")
{
    int s=0,l=n.length();
    
  for(int i=0;i<l;i++)    s+=n[i]-0;
  
while(s>9)   s=s/10+s%10;
  cout<<s<<endl;
}
return 0;
}
View Code

#include <iostream>
#include <string>
using namespace std;
int main()
{
   string n;
 while(cin>>n,n!="0")
{
    int s=0,l=n.length();
   
  for(int i=0;i<l;i++)    s+=n[i]-‘0‘;
 
while(s>9)   s=s/10+s%10;
  cout<<s<<endl;
}
return 0;
}

 

zju 1115 Digital roots 数字根,布布扣,bubuko.com

zju 1115 Digital roots 数字根

标签:style   blog   http   color   os   io   for   2014   

原文地址:http://www.cnblogs.com/2014acm/p/3885941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!