美文网首页
4个数字,组合成三位数

4个数字,组合成三位数

作者: 君丨夜 | 来源:发表于2018-08-16 09:31 被阅读0次

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

    for a in range(1,5):

        for b in range(1,5):

            for c in range(1,5):

                if (a != b) and (a != c) and (b != c):

                    print(a,b,c)

    相关文章

      网友评论

          本文标题:4个数字,组合成三位数

          本文链接:https://www.haomeiwen.com/subject/vbknbftx.html