代码搜索游戏01.14

时间:2014-05-17 09:47:38

标签: java algorithm operators

我正在玩一款输入参数' x'的游戏。我应该返回预期的结果。

public class Program {
    public static int Puzzle(int x) {
        // RETURN EXPECTED RESULT
        // Hint : You will have to use the modulo % operator to solve this one.
    }
}
x    EXPECTED RESULT
--   ---------------
1    0
3    1
4    2
5    0
6    4
7    3
8    2
9    1
10   0
23   10
35   10
96   10

任何帮助?

2 个答案:

答案 0 :(得分:7)

public class Program {
    public static int Puzzle(int x) {
        return 10 % x;
    }
}

答案 1 :(得分:1)

答案是: 返回10%x;

也许其他人可以用数学术语解释你为什么这么做。那,我不能肯定地说。