搜索资源列表
czichengxu
- 有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。 -There are numbers 1,2,3,4, how many can be composed of mutually exclusive and non-duplication of the same three-digit numbers? How many are? 1. P
cPP
- 有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?-1, 2, 3, 4 digital, can form number different from each other and not repeat digital three-digit? Are how many?
java_5
- 一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。-A 5-digit, determine if it is palindrome. That 12321 is a palindrome, a bit the same as ten thousand, ten and one thousand.
dataset_616738
- 包含1593个手写数字0~9.由semeion.data经matlab处理得到semeion.mat,可直接使用。原semeion.names转化为readme.m. mat:1593*266 每行为一个样本,其中256是16*16的手写数字展开,后10列为数字识别标签,例如:若第一列为1,则数字为0,第二列为1,数字为1.。。以此类推。 另外附matlab小例子,可以画出每个数字,更好理解。图像要反转和旋转一下才符合写作习惯。-Contains 1593 handwritten d
BNUTBDJNBOOFR
- 【程序29】 题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。 1. 程序分析:学会分解出每一位数,如下解释:(这里是一种简单的算法,师专数002班赵鑫提供) 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h main( ) { long a,b,c,d,e,x scanf( ld ,&x) a=x/10000 分解出万位 b=x 10000
CBVBBBVJRNRGRJ
- 题目:一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。 1.程序分析 2.程序源 代码如下: #include stdio.h #include conio.h main( ) { long ge,shi,qian,wan,x scanf( ld ,&x) wan=x/10000 qian=x 10000/1000 shi=x 100/10 ge=x 10 if(ge