穷举作业(四)
作者:互联网
public class t8 {
public static void main(String[] args) {
// TODO Auto-generated method stub
//韩信知道部队人数大约1000人左右,具体数字不详,5人一组剩余1人,
//7个人一组还剩两个人,8个人一组还剩3个人,问:这支部队有多少人?
//
//11<X<2000
//X%5==1 && X%7==2 && X%8==3
for (int x = 11; x <2000; x++) {
if (x%5==1 && x%7==2 && x%8==3) {
System.out.println(x);
}
}
}
}
标签:个人,一组,作业,x%,&&,穷举,public 来源: https://blog.csdn.net/laowangwjh/article/details/122753498