這是一個GA的簡單程式碼,提供有初學使用者做為參考
標簽: 程式
上傳時間: 2016-10-29
上傳用戶:myworkpost
工廠採購管理系統,採用delphi+sqlserver開發,完全C/S架設,所有數據全部通過存儲過程活觸發器完成
標簽: 系統
上傳時間: 2013-12-14
上傳用戶:zhoujunzhen
摩托羅拉V3FLASH源文件下載,包含整個網站內容,式直得參考的動話
上傳時間: 2014-01-12
上傳用戶:1966640071
JAVA music player. Project Homepage : http://www.javazoom.net/jlgui/jlgui.html Developer Homepage : http://sourceforge.net/project/?group_id=1344 ----------------------------------------------------- To launch jlGui just doucle click under jlGui2.0.jar. If nothing appear then edit jlGui.bat (or jlGui.sh) script and setup JLGUI_HOME variable and launch the script. To play local file : Left click on "Eject" button. To play remote file/stream : Right click on "Eject" Button. To fill in playlist : Edit default.m3u file before launching jlGui.
標簽: jlgui Developer Homepage javazoom
上傳時間: 2016-11-16
上傳用戶:wpwpwlxwlx
FatFs06.rar FatFs is a generic file system module to implement the FAT file system to small embedded systems. The FatFs is written in compliance with ANSI C, therefore it is independent of hardware architecture. It can be incorporated into cheap microcontrollers, such as 8051, PIC, AVR, SH, Z80, H8, ARM and etc..., without any change.
標簽: system FatFs file implement
上傳時間: 2016-11-17
上傳用戶:chenxichenyue
排序 得分排行 選擇、插入、氣泡排序 Shell 排序法 - 改良的插入排序 Shaker 排序法 - 改良的氣泡排序 Heap 排序法 - 改良的選擇排序 快速排序法(一) 快速排序法(二) 快速排序法(三) 合併排序法 基數排序法
上傳時間: 2016-11-17
上傳用戶:123456wh
成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread printf("請輸入分數\n") scanf("%f",&gread) if(gread>=80&&gread<=100) printf("成績為A\n") else if(gread>=60&&gread<=79) { printf("成績為B\n") } else if(gread>=0&&gread<60) { printf("成績為C\n") } else { printf("分數輸入錯誤\n") } system("pause") return 0 }
標簽: include stdlib float gread
上傳時間: 2014-01-15
上傳用戶:waizhang
河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,int) int main(void) { int n int option printf("題目二:河內塔問題\n") printf("請輸入要搬移的圓盤數目\n") scanf("%d",&n) printf("最少搬移的次數為%d次\n",fun_a(n)) printf("是否顯示移動過程? 是請輸入1,否則輸入0\n") scanf("%d",&option) if(option==1) { fun_b(n,1,2,3) } system("pause") return 0 } int fun_a(int n) { int sum1=2,sum2=0,i for(i=n i>1 i--) { sum1=sum1*2 } sum2=sum1-1 return sum2 } void fun_b(int n,int left,int mid,int right) { if(n==1) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) else { fun_b(n-1,left,right,mid) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) fun_b(n-1,mid,left,right) } }
上傳時間: 2016-12-08
上傳用戶:努力努力再努力
look1為電子看板的第二個芯片,使用自制的握手信號與look通訊,可以進行數據傳送,以及控制16個數碼管顯示,此案例已成功用於生產現志,所用的元件很少,功能較大呢
上傳時間: 2017-01-02
上傳用戶:han_zh
QR Code碼的解碼程序,使用java 有興趣看參考
上傳時間: 2017-01-20
上傳用戶:zhangyigenius