一般的學(xué)生成績管理,要在win-tc中文dos下運(yùn)行
標(biāo)簽:
上傳時(shí)間: 2017-01-15
上傳用戶:zhuimenghuadie
智能手機(jī)導(dǎo)航系統(tǒng),Win mobile
標(biāo)簽: 智能手機(jī) 導(dǎo)航系統(tǒng)
上傳時(shí)間: 2014-08-05
上傳用戶:懶龍1988
PL0 C語言版本 //A.2 C 版 本 /*編譯和運(yùn)行環(huán)境: *1Visual C++6.0,VisualC++.NET and Visual C++.NET 2003 *WinNT, Win 200, WinXP and Win2003 *2 gcc version 3.3.2 20031022(Red Hat Linux 3.3.2-1) *Redhat Fedora core 1 *Intel 32 platform *使用方法: *運(yùn)行后輸入PL/0 源程序文件名 *回答是否輸出虛擬機(jī)代碼 *回答是否輸出名字表 *fa.tmp 輸出虛擬機(jī)代碼 *fa1.tmp 輸出源文件及其各行對應(yīng)的首地址 *fa2.tmp 輸出結(jié)果 *fas.tmp 輸出名字表 */
標(biāo)簽: Visual NET VisualC WinNT
上傳時(shí)間: 2013-12-22
上傳用戶:遠(yuǎn)遠(yuǎn)ssad
shp轉(zhuǎn)換,方便用戶批量轉(zhuǎn)換數(shù)據(jù)用,可以到win平臺 linux平臺
上傳時(shí)間: 2017-02-13
上傳用戶:秦莞爾w
最大特點(diǎn) 1.跨平臺,基本W(wǎng)EB服務(wù),無論防火強(qiáng)怎么封端口,只要打開80,就可以遠(yuǎn)程管理服務(wù)器. 2.客戶端無論安裝任何插件. 3.只有一個(gè)JSP文件,文件名可以隨意改,隱蔽性好. 功能: 1.文件管理: 包括對文件的操作和打包下載. 2.終端命令: 其實(shí)就是Win下的"命令提示符",可以通過命令進(jìn)行重啟服務(wù)器等操作 3.遠(yuǎn)程桌面: 和Windows系統(tǒng)的"mstsc"基本上一樣,可以遠(yuǎn)程管理桌面. 4.任務(wù)管理: 可以查看正在運(yùn)行的程序的狀態(tài),并終止已停止響應(yīng)的程序 5.服務(wù)管理: 啟動、停止或重新啟動服務(wù). 6.系統(tǒng)信息: 可以查看CPU、內(nèi)存、OS版本....
上傳時(shí)間: 2014-01-25
上傳用戶:yoleeson
The Window Design Method The basic idea behind the design of linear-phase FIR filters using the window method is to choose a proper ideal frequency-selective filter [which always has a noncausal, infinite duration impulse response] and then truncate its impulse response hd[n] to obtain a linear-phase and causal FIR filter h[n]. To truncate the impulse response of the ideal filter a time window w[n] is used. Available windows in Matlab are rectangular [or boxcar in Matlab], bartlett, hamming, hanning
標(biāo)簽: linear-phase The the filters
上傳時(shí)間: 2017-03-20
上傳用戶:PresidentHuang
用MFC實(shí)現(xiàn)串口編程, 本文詳細(xì)介紹了串行通信的基本原理,以及在Windows NT、Win98環(huán)境下用MFC 實(shí)現(xiàn)串口(COM)通信的方法:使用ActiveX控件或Win API.并給出用Visual C++6.0 編寫的相應(yīng)MFC32位應(yīng)用程序。關(guān)鍵詞:串行通信、VC++6.0、ActiveX控件、Win API、MFC32位應(yīng)用程序、事件驅(qū)動、非阻塞通信、多線程.
標(biāo)簽: MFC 串口編程 詳細(xì)介紹 串行通信
上傳時(shí)間: 2017-04-08
上傳用戶:妄想演繹師
* This source demonstrates sending HTTP POST request to webserver from C++ * This uses sockets hence can be compiled on Linux, UNIX, Win
標(biāo)簽: This demonstrates webserver sending
上傳時(shí)間: 2013-12-26
上傳用戶:haohaoxuexi
//初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //設(shè)置模式 cbreak() noecho() keypad(stdscr, TRUE) //建立窗口 win = newwin(h, w, 3, 20) box(win, 0, 0) keypad(win, TRUE) wmove(win, cury, curx) mvaddstr(16, 1, "Press arrow keys to move the cursor within the window.\n") mvaddstr(17, 1, "Press q to quit.\n") refresh() wrefresh(win)
標(biāo)簽: EXIT_FAILURE initcurs initscr perror
上傳時(shí)間: 2013-12-20
上傳用戶:FreeSky
//初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } cbreak() noecho() keypad(stdscr, TRUE) //建立菜單項(xiàng) for(i=0 i<N_ITEMS i++){ items[i] = new_item(months[i], "") } //建立菜單 mymenu = new_menu(items) //設(shè)置為5行單列的菜單 set_menu_format(mymenu, 5, 1) set_menu_mark(mymenu, "*") //獲得菜單的行數(shù)很列數(shù) scale_menu(mymenu, &mrows, &mcols) //建立窗口和子窗口 win = newwin(mrows + 2, mcols + 2, 3, 30) keypad(win, TRUE) box(win, 0, 0) subwin = derwin(win, 0, 0, 1, 1) //設(shè)置菜單的窗口 set_menu_sub(mymenu, subwin) //在子窗口上放置菜單 post_menu(mymenu) refresh() wrefresh(win)
標(biāo)簽: EXIT_FAILURE initcurs initscr cbreak
上傳時(shí)間: 2013-11-29
上傳用戶:小眼睛LSL
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1