本帖最后由 pal_xie 于 2016-5-14 22:26 编辑
- public static void main(String[] args) {
- for (int a = 1; a < 4; a++) {
- for (int b = 1; b < 5; b++) {
- for (int c = 1; c < 5; c++) {
- for (int d = 1; d < 5; d++) {
- String s = "" + a + b + c + d;
- if (s.contains("13") || s.contains("31")) {
- continue;
- } else {
- System.out.println(s);
- }
-
- }
- }
- }
- }
- }
复制代码 想到思路,2分钟就敲出来了 |