zoukankan      html  css  js  c++  java
  • 11 多少个互不相同且无重复数字的三位数

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

    可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。

    思路:
    * 1、每位数都遍历一次,就是个位出现1234,十位出现1234,百位出现1234
    * 2、去重复,个位十位百位不能相等
    * 3、复合式遍历,统计这种遍历得到了多少回

     1     public class _011PrintThreeArray {
     2 
     3     public static void main(String[] args) {
     4         printThreeArray();
     5     }
     6     
     7      
     8     private static void printThreeArray() {
     9         int count = 0;
    10         System.out.println("这样的组合有:");
    11         for (int x = 1; x < 5; x++) {
    12             for (int y = 1; y < 5; y++) {
    13                 for (int z = 1; z < 5; z++) {
    14                     if (x != y && y != z && z != x) {
    15                         count++;
    16                         
    17                         System.out.print(x * 100 + y * 10 + z+" ");
    18                     }
    19                 }
    20             }
    21         }
    22         System.out.println();
    23         System.out.println("共有" + count + "个三位数");
    24     }
    25 }
  • 相关阅读:
    移动网络优化
    移动网络架构与数据传输
    移动网络简介与RRC
    CSS之外边距折叠
    网络协议之TLS
    Smarty 模板引擎简介
    FormData介绍
    相对路径与绝对路径
    OAuth2.0
    Redis学习手册(List数据类型)
  • 原文地址:https://www.cnblogs.com/liuyangfirst/p/6514305.html
Copyright © 2011-2022 走看看