我正在玩一款输入参数' 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
任何帮助?
答案 0 :(得分:7)
public class Program {
public static int Puzzle(int x) {
return 10 % x;
}
}
答案 1 :(得分:1)
答案是: 返回10%x;
也许其他人可以用数学术语解释你为什么这么做。那,我不能肯定地说。