题目描述
思路分析
直接采用暴力破解,先限定范围,然后依次筛选出满足条件的情况。
代码实现
package TEST;public class Main {public static void main(String[] args) {for (int i = 5; i < 10000; i++) {int temp = i;if (temp % 5 == 1) {temp = temp / 5 * 4;//(temp-1)/5==temp/5,自动进行取整操作if (temp % 5 == 2) {temp = temp / 5 * 4;if (temp % 5 == 3) {temp = temp / 5 * 4;if (temp % 5 == 4) {temp = temp / 5 * 4;if (temp % 5 == 0 && temp != 0) {//temp!=0为了防止到了第五个猴子的时候,剩下的香蕉小于5System.out.println(i);return;}}}}}}}
}
答案
3141