博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-Add Digits
阅读量:6003 次
发布时间:2019-06-20

本文共 421 字,大约阅读时间需要 1 分钟。

Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.

  

public class Solution {    public int addDigits(int num) {        String numStr=Integer.toString(num);        int total=0;        for(int i=0; i

 

转载于:https://www.cnblogs.com/incrediblechangshuo/p/5662217.html

你可能感兴趣的文章
java内存管理
查看>>
java websocket
查看>>
Linux 性能测试工具 sysbench 的安装与简单使用
查看>>
bash shell 中数组使用举例
查看>>
MFC ado+mysql+odbc技术分享
查看>>
12312
查看>>
ASP.NET开发者必备小技巧
查看>>
使用PHPExcel类库将数据导出为excel文档
查看>>
AndroidStudio使用技巧之GsonFormat
查看>>
Spring中ApplicationContext和beanfactory区别
查看>>
对象/对象指针 以及背后的堆栈
查看>>
电源管理密码
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
突破边缘,Know yourself!
查看>>
常见http状态码
查看>>
ldap 安装
查看>>
我的友情链接
查看>>
使用secure CRT的SFTP在LINUX与WINDOWS下交换文件
查看>>
Docker单独设置代理服务
查看>>