1. 程式人生 > >幾個數字的組合方式種類個數

幾個數字的組合方式種類個數

package 演算法;

public class 幾個數字的組合方式種類個數 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int[] arr={1,2,3,5};
        int count=0;
        for(int i=0;i<arr.length;i++){
            for(int j=0;j<arr.length;j++){
                for(int k=0;k<arr.length;k++){
                    if(arr[i]!=arr[j] && arr[j]!=arr[k] && arr[i]!=arr[k]){
                        count++;
                        System.out.println(arr[i]*100+arr[j]*10+arr[k]);
                    }
                }
            }
        }
        System.out.println("共:"+count);
    }

}