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
該程序是雙色點陣程序,由4塊8*8的小點陣組成,可顯示任何漢字,漢字代碼可通過字模軟件生成。
上傳時間: 2016-11-25
上傳用戶:ljt101007
成績顯示三個部份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
上傳用戶:努力努力再努力
DSP集成開發環境CCS開發指南,市面上最為完整的一套書,對於DSP入門的人很有用處,謝謝大家一塊免費共享
上傳時間: 2016-12-12
上傳用戶:lijianyu172
look1為電子看板的第二個芯片,使用自制的握手信號與look通訊,可以進行數據傳送,以及控制16個數碼管顯示,此案例已成功用於生產現志,所用的元件很少,功能較大呢
上傳時間: 2017-01-02
上傳用戶:han_zh
液晶顯示程序,初始化芯片,取字模,將取出的字模送液晶相應的位置顯示
上傳時間: 2013-12-29
上傳用戶:iswlkje
Video IO toolbox for matlab. 用directshow做的,比matlab自己的video IO函數強很多。
標簽: directshow toolbox matlab Video
上傳時間: 2017-02-03
上傳用戶:熊少鋒