码迷,mamicode.com
首页 > 其他好文 > 详细

有1、2、3、4四个数字,能组成多少个互不相同且一个数字中无重复数字的三位数?并把他们都输出。

时间:2017-06-15 00:47:00      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:log   print   system   logs   i++   输出   rgs   test   数字   

/**
 * 有1、2、3、4四个数字,能组成多少个互不相同且一个数字中无重复数字的三位数?并把他们都输出。
 *
 */
public class Test1 {

    public static void main(String[] args) {
        int num = 0, c = 0;
        for (int i = 1; i <= 4; i++) {

            for (int j = 1; j <= 4; j++) {

                for (int k = 1; k <= 4; k++) {
                    if (i != j && i != k && j != k) {
                        num = i * 100 + j * 10 + k;
                        c++;
                        System.out.println(num);
                    }
                }
            }
        }
        System.out.println("一共有" + c + "个");
    }
}

 

有1、2、3、4四个数字,能组成多少个互不相同且一个数字中无重复数字的三位数?并把他们都输出。

标签:log   print   system   logs   i++   输出   rgs   test   数字   

原文地址:http://www.cnblogs.com/lanseyitai1224/p/7011546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!