zoukankan      html  css  js  c++  java
  • Java经典编程题50道之十一

    有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?

    public class Example11 {

        public static void main(String[] args) {
            number();
        }

        public static void number() {
            int count = 0;
            for (int x = 1; x < 5; x++) {
                for (int y = 1; y < 5; y++) {
                    for (int z = 1; z < 5; z++) {
                        if (x != y && y != z && x != z) {
                            int number = x * 100 + y * 10 + z;
                            System.out.print(number + " ");
                            count++;
                            if (count % 10 == 0) {
                                System.out.println();
                            }
                        }
                    }
                }
            }
            System.out.println(" 共有" + count + "个三位数");
        }
    }

  • 相关阅读:
    Mysql任务调度
    使用 IntraWeb (18)
    使用 IntraWeb (17)
    替盛大代发的招聘启示
    使用 IntraWeb (16)
    使用 IntraWeb (15)
    使用 IntraWeb (14)
    使用 IntraWeb (13)
    使用 IntraWeb (12)
    使用 IntraWeb (11)
  • 原文地址:https://www.cnblogs.com/qubo520/p/6935384.html
Copyright © 2011-2022 走看看