# encoding:utf-8 # p001_1234threeNums.py def threeNums(): '''题目:有1.2.3.4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?''' print None count = 0 nums = [] for index1 in xrange(1,5): for index2 in xrange(1,5): for index3 in xrange(1,5): if index1 != index2 and index1 !…
package java_day10; /* * 有1.2.3.4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? */ public class Demo04 { public static void main(String[] args) { //int[] array = {1,2,3,4}; int count = 0; for (int i = 1; i <=4; i++) { for (int j = 1; j <= 4; j++) { for (int k = 1;…
方法一:for循环遍历 counter=0 for i in range(1,5): for j in range(1,5): for k in range(1,5): if i !=j and j !=k and k !=i: print("{}{}{}".format(i,j,k),end=" ") counter +=1 print("") print("共{}种组合".format(counter)) 方法二:用ite…
题目:有四个数字:1.2.3.4,能组成多少个互不相同且无重复数字的三位数?各是多少? 来看第一种解法 num = [1, 2, 3, 4] """ 根据题中'互不相同'要求,创建一个集合(去重),存放三位数 注意{}仅用于创建空字典!set()函数用来创建集合 """ s = set() # 遍历整个列表三次,组成三位数 for i in num: for j in num: # 去掉与i重复的数字 if j !=i: for k in num…
听说做练习是掌握一门编程语言的最佳途径,那就争取先做满100道题吧. ---------------------------------------------------------------------- [Python练习题 001]有1.2.3.4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 这题还算比较简单,思路是:先确定百位数.然后是十位数.个位数.1-4 四个数字循环一遍,就都全出来了. res = [] for i in range(1,5): for j in…
package 习题集2;//有1,2,3,4四个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?public class Demo1 { public static void main(String[] args) { chank(); } public static void chank(){ for (int i = 1;i <= 4;i ++){ for (int j = 1;j <= 4;j ++){ for (int k = 1;k <= 4;k ++){ if (…
题目:有四个数字:1.2.3.4,能组成多少个互不相同且无重复数字的三位数?各是多少? 程序分析:可填在百位.十位.个位的数字都是1.2.3.4.组成所有的排列后再去 掉不满足条件的排列. 程序源代码: #!/usr/bin/python # -*- coding: UTF-8 -*- # 题目:有四个数字:1.2.3.4,能组成多少个互不相同且无重复数字的三位数?各是多少? l = 0 m = [] for i in range(1,5): for j in range(1,5): for k…
#有五个数字:1.2.3.4.5,能组成多少个互不相同且无重复数字的四位数?各是多少? e =[] for a in range(1,6): for b in range(1,6): for c in range(1,6): for d in range(1,6): if a!=b and a!=c and a!=d and b!=c and b!=d and c!=d: e.append(str(a)+str(b)+str(c)+str(d)) print("组成数量:%d" %le…