windows 環境下的所有報行指令, 如winver 檢查Windows版本 wmimgmt.msc 打開Windows管理體系結構(wmi) wupdmgr Windows更新程序 wscript Windows腳本宿主設置 write 寫字板 等等...其它的指令瑪
標簽: Windows windows wmimgmt wupdmgr
上傳時間: 2013-12-26
上傳用戶:225588
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
五子棋GoBang 無限悔棋,棋盤大小設定,難度設定,先後出棋設定
標簽: GoBang
上傳時間: 2013-12-21
上傳用戶:變形金剛
排序 得分排行 選擇、插入、氣泡排序 Shell 排序法 - 改良的插入排序 Shaker 排序法 - 改良的氣泡排序 Heap 排序法 - 改良的選擇排序 快速排序法(一) 快速排序法(二) 快速排序法(三) 合併排序法 基數排序法
上傳時間: 2016-11-17
上傳用戶:123456wh
本文件雖已力求正確,然而無法保證所有操作/設定範例, 都可以順利的在您的系統上面進行。 如果您依 照本文件的說明而使您的系統發生任何問題或損失, 作者都將不負任何責任。 希望由於本文的出現,能大量減少在網路上一再重複出現的問題:"為 什麼我不能輸入/看到中文?","為什 麼我 xxxx 裝不起來?" 等等。 雖然我也了解這是不太可能的...
標簽: 正
上傳時間: 2013-12-19
上傳用戶:wang5829
成績顯示三個部份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
利用加強的PWM模組輸出半橋式PWM輸出,並設定適當的空乏時間,同時開啟自動關閉功能,當RB0觸發時檢查蜂鳴器是否運作正常,這是PIC184520的源碼
上傳時間: 2013-12-15
上傳用戶:er1219