题解 | #The Biggest Water Problem#

The Biggest Water Problem

https://ac.nowcoder.com/acm/problem/15173

package 每日一题;

import java.util.Scanner;

public class NC15173 {
    public static void main(String []args){
        Scanner sc = new Scanner(System.in);
        int shuru = sc.nextInt();
        System.out.println(diguishuchu(shuru));
    }
    public static int anweiqiuhe(int n){
        int ans = 0;
        while (n!=0) {
            ans += n%10;
            n = n/10;
        }
        return ans;
    }
    public static int diguishuchu(int n){
        if(anweiqiuhe(n)>9) return anweiqiuhe(anweiqiuhe(n));
        else return anweiqiuhe(n);
    }
}

有个测试点没过,有点奇怪。

全部评论

相关推荐

AaronRuan:看到了好多开奖了,不知道为啥自己也有点激动,真的替你们感到高兴啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务