搜索资源列表
PDFspc13
- PDF格式白皮书,版本为1.3,PDF官方文档。-PDF format white paper, version 1.3, PDF of official documents.
CablesEnArVer10.3
- 1.The content is too simple 2.Is not a sourcecode or document 3.lack of files 4.Directory or platform is not correct selected 5.Descr iption is not detailed 6.Compressed file has password 7.Sourcecode duplicate or already exist
CablesEnArVer9.1
- 1.The content is too simple 2.Is not a sourcecode or document 3.lack of files 4.Directory or platform is not correct selected 5.Descr iption is not detailed 6.Compressed file has password 7.Sourcecode duplicate or already exist
doc
- 1. Download the version you want: * Version 1.3.4 (30 Aug 2007) -- this is the latest version for UNIX/Linux and Windows * Previous versions 2. Unzip the file, which will create a directory called klt and place all the files there 3. Co
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
cpptcl-1.1.3.tar
- cpptcl library for ns2
1
- 1).可以输入各个项目的前三名或前五名的成绩; 2).能统计各学校总分, 3).可以按学校编号、学校总分、男女团体总分排序输出; 4).可以按学校编号查询学校某个项目的情况;可以按项目编号查询取得前三或前五名的学校。 -score school
SupermarketManagementSystemRequirementsAnalysis.zi
- 超市管理系统需求分析 1项目计划 1.1系统开发目的 1.2背景说明 1.3项目确立 2逻辑分析与详细分析 2.1需求分析 2.2目标 2.3数据流程图 2.4系统功能 2.5系统开发步骤 2.6用户的特点 2.7假定与约束 3基于UML的建模 3.1语义规则 3.2UML模型 3.2.1系统UML模型 3.2.2子系统UML模型 3.2.3系统实现图 4小结 -Supermarket Management Syst
mataqipang
- 用数据结构(C语言版)编写程序,实现一个国际象棋的马踏遍棋盘的演示程序。具体要求为:将马随机放在国际象棋的8*8棋盘的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。用堆栈编制非递归程序求出马的行走路线,并按求出的行走路线,将数字1,2,3,……,64依次填入一个8*8的方阵,输出之。 -With the data structure (C language version) to write programs to achieve a chess board
1
- 编写程序,计算下面公式并输出结果。 要求:(1)编写一个函数计算n! (2)编写主函数,由键盘输入n和m,调用(1)中的函数完成计算。 (3)输入n和m要给出提示,并检查n和m的合理性,不合理的输入应输出错误信息,并不再进行计算。-Write programs to calculate the following formula and output. Requirements: (1) Write a function to calculate n! (2) the
1
- 输入行数,打印 n行的一个由数字组成的三角形,三角型如下 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 4 5 4 3 2 1 1 2 3 4 5 6 5 4 3 2 1 1 2 3 4 5 6 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 -Input line number, print n lin
2-1-3matlab
- matlab仿真通过的2 1 3卷积编译码-213 convolutional encoding and decoding matlab simulation by
fractal-use
- 分形的练习一 ①Koch曲线 用复数的方法来迭代Koch曲线 clear i 防止i被重新赋值 A=[0 1] 初始A是连接(0,0)与(1,0)的线段 t=exp(i*pi/3) n=2 n是迭代次数 for j=0:n A=A/3 a=ones(1,2*4^j) A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a] end plot(real(A),imag(A)) axis([0 1 -
java_code_2
- 有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。 -There are a sequence of Score: 2/1, 3/2, 5/3, 8/5, 13/8, 21/13 ... determined number column 20 and.
jQuery_EasyUI-1.3_chinese_chm
- jQuery EasyUI 1.3 中文帮助手册 对应官方网站documentation 栏目下内容制作的chm手册,可以随时查阅目录,索引。排版整齐。-jQuery EasyUI 1.3 Chinese help manuals content produced in the corresponding part of the official website documentation the chm manual, can access the catalog, index. The
dcca-6-1-3-dicom-conformance
- This conformance statement applies to version 6.1 of the Dell Cloud Clinical Archive product. Future versions of the product should maintain compatibility with this conformance statement, but will include added features and enhancements.
1
- 已知:Sn= 1+1/2+1/3+…+1/n。显然对于任意一个整数K,当n足够大的时候,Sn大于K。 现给出一个整数K(1<=k<=15),要求计算出一个最小的n;使得Sn>K。
1
- 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子对数为多少? 程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21-Title: Classical problem: a pair of rabbits the first 3 months after birth were born a month, rabbits, bunnies grow up to the third month a
bianyaqi
- 简介:负载曲线的平均负载系数越高,为达到损耗电能越小,要选用损耗比越小的变压器;负载曲线的平均负载系数越低,为达到损耗电能越小,要选用损耗比越大的变压器。将负载曲线的平均负载系数乘以一个大于1的倍数,通常可取1-1.3,作为获得最佳效率的负载系数,然后按βb=(1/R)1/2计算变压器应具备的损耗比。 -Introduction: the average load factor of the load curve is higher, the loss of power to achieve s
isomaster-1.3.13
- isomaster-1.3.13.zip 文件主要是实现了 iso格式源代码(Isomaster-1.3.13.zip file is mainly to achieve the ISO format source code)