首页 > 其他 > 详细

A6:Add Digits

时间:2017-02-11 16:59:22      阅读:238      评论:0      收藏:0      [点我收藏+]

题目描述:

Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.

样例

Given num = 38.
The process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return 2.

 

解答:

 1 public class Solution {
 2     /**
 3      * @param num a non-negative integer
 4      * @return one digit
 5      */
 6     public int addDigits(int num) {
 7         // Write your code here
 8         while(num / 10 > 0){
 9             int[] tmp = getNum(num);
10             num = 0;
11             for(int i=0; i<tmp.length; i++){
12                 num = num + tmp[i];
13             }
14         }
15        return num;
16     }
17 
18     private int[] getNum(int num){
19         int length = Integer.toString(num).length();
20         int[] tmp = new int[length];
21         int i = 0;
22         while (num / 10 > 0){
23 
24             tmp[i] = num % 10;
25             num = num / 10 ;
26             i++;
27         }
28         tmp[length-1] = num;
29         return tmp;
30     }
31    
32 }

 

 

 

 

A6:Add Digits

原文:http://www.cnblogs.com/tutotu/p/6389257.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!