-
用Access算24点
利用Access做用户界面,用Access VBA开发计算24点的程序,然后通过遍历输出所有可能结果。
小学数学老师会利用算24来锻炼小学生的心算能力,作为家长,如果孩子如果有一道题算不出来向您求救时,您却拿不出一个解决方案来,岂不丢面子? 好了,现在有了这个工具,您可以在1秒钟内给出多个答案,孩子会更崇拜您哦! :-)
- 2022-04-30 22:10:23下载
- 积分:1
-
数值排序,冒泡排序等排序方式,是一个简洁的VB程序。运算速度快...
数值排序,冒泡排序等排序方式,是一个简洁的VB程序。运算速度快-numerical order, such as sorting Bubble Sort method is a simple VB program. Fast.
- 2022-01-25 14:46:59下载
- 积分:1
-
本程序模拟细胞的自我繁殖,你会看到一个柔软的细胞诞生在电脑屏幕上,然后随着各个分子的撞击,细胞开始分裂,经过一段时间的演化,这个细胞会在溶液中把自己复制,然后这...
本程序模拟细胞的自我繁殖,你会看到一个柔软的细胞诞生在电脑屏幕上,然后随着各个分子的撞击,细胞开始分裂,经过一段时间的演化,这个细胞会在溶液中把自己复制,然后这个过程会继续进行……。这种自我复制是在人工化学的基础上进行,比起原来的基于细胞自动机的自我复制更加形象逼真-the cell simulation of self-reproduction, you will see a soft cell birth on the computer screen, and then with all the percussive elements, cell division, after a period of evolution, the cells in the solution themselves copied, and then the process will continue ... . This self-reproduction of the artificial chemical basis, compared to the original cell-based automatic machine self-replication more vivid
- 2022-07-16 13:06:16下载
- 积分:1
-
对偶单纯形法
求解线性规划的对偶单纯形法,c语言版。线性规划的对偶单纯形法用c语言实现
- 2023-01-05 11:05:03下载
- 积分:1
-
基于VC的FFT算法
资源描述
Design
a program to implement the 1-D FFT algorithm.
Input:
a vector. Get the testing data in file ‘Project_2_test’.
Output:
a vector, which is the discrete Fourier transform of the input.
For
example:
Input:
3 8 10 12
Output:
33.0000+0.0000i -7.0000+4.0000i -7.0000+0.0000i -7.0000-4.0000i
Requirements:
- 2023-07-23 23:40:04下载
- 积分:1
-
遗传算法优化
资源描述
多种群遗传算法,包括移民算子,人工选择算子,目标函数,标准遗传算法和多种群遗传算法的主函数,适合于群体智能算法的初学者,是经典的算法案例。
- 2022-01-31 00:46:50下载
- 积分:1
-
containing matrix, subtraction, multiplication, addition and to the home, seekin...
含有矩阵加、减、乘、除及转置、求逆运算等等,还需要改进-containing matrix, subtraction, multiplication, addition and to the home, seeking inverse operation, and so on, it is also necessary to improve
- 2022-06-30 15:05:04下载
- 积分:1
-
模拟和Optimitation JPEG
这个项目的目的是研究的最优化的可能性标准的JPEG编码,并通过添加动态JPEG扩展JPEG格式的功能编码器
- 2022-05-12 10:51:49下载
- 积分:1
-
C语言求逆矩阵
C语言求逆矩阵 介绍一下算法导论上的一般的矩阵求拟算法思路。 假设要对矩阵A求逆,首先利用矩阵论知识,对A进行LUD分解。 利用分解出来的矩阵L,U,D来求解AB=I中的n个线性方程组,得到n个解向量,所有解向
- 2023-01-13 23:50:03下载
- 积分:1
-
电影票
图书馆管理系统 C+ + * 递归程序为线性搜索 * /#includeint 线性 (int [],int,int) ;无效的主要 (){int a [20],pos = 1,n,k,我 ;clrscr() ;printf ("nEnter n 值:") ;scanf ("%d",& n) ;printf ("nEnter 元素的数组:") ;为 (我 = 0 ; 我 < n; i + +)scanf ("%d"& a[i]) ;printf ("n 输入要搜索的元素:") ;scanf ("%d"& k) ;pos=linear(a,n,k) ;if(pos!=-1)printf ("n 搜索成功,发现位置 %d 处的元素",pos) ;其他printf ("搜索失败,找不到元素") ;残培 () ;}int 线性 int k int n int []){int ;为 (我 = n-1 ; 我 > = 0; 我 — —){if(a[i]==k)return(i) ;其他{n = n-1 ;return(linear(a,n,k)) ;}}返回-1 ;}
- 2022-02-02 00:00:53下载
- 积分:1