Java教程

编写程序-不相同的三位数和四位数

本文主要是介绍编写程序-不相同的三位数和四位数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#不同的四位数
count=0
list=[1,2,3,4,5]
for i in list:
    for j in list:
        for y in list:
            for s in list:
                if i!=j and j!=y and y!=s and s!=i:
                    count=count+1
                print(str(i)+str(j)+str(y)+str(s), end="\t")
print("一共有多少种{}方案".format(count))
#不同的三位数
count=0
list=[1,2,3,4,5]
for i in list:
    for j in list:
        for y in list:
                if i!=j and j!=y and y!=i:
                    count=count+1
                print(str(i)+str(j)+str(y), end="\t")
print("一共有多少种{}方案".format(count))
这篇关于编写程序-不相同的三位数和四位数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!