ActiveX Data Objects Programming in C++ Description: ActiveX Data Objects Programming How To: Hey, this is some kind of an experiment in writing tutorials in PSC. All of my articles are in .html files included in the zip file, together with the sample code
標簽: Programming ActiveX Objects Data
上傳時間: 2013-12-22
上傳用戶:水口鴻勝電器
正整數(shù)x 的約數(shù)是能整除x 的正整數(shù)。正整數(shù)x 的約數(shù)個數(shù)記為div(x)。例如,1,2,5,10 都是正整數(shù)10 的約數(shù),且div(10)=4。設a 和b 是2 個正整數(shù),a≤b,找出a 和b之間約數(shù)個數(shù)最多的數(shù)x。 對于給定的2 個正整數(shù)a≤b,編程計算a 和b 之間約數(shù)個數(shù)最多的數(shù)。 數(shù)據(jù)輸入 輸入數(shù)據(jù)由文件名為input.txt的文本文件提供。文件的第1 行有2 個正整數(shù)a和b。 結果輸出 程序運行結束時,若找到的a 和b 之間約數(shù)個數(shù)最多的數(shù)是x,將div(x)輸出到文件output.txt中。 輸入文件示例 輸出文件示例 input.txt output.txt 1 36 9
上傳時間: 2016-10-10
上傳用戶:dianxin61
一元稀疏多項式計算器的基本功能是: (1)輸入并建立多項式; (2)輸出多項式,輸出形式為整數(shù)序列:n,c1,e1,c2,e2,….,cn,en, 其中n是多項式的項數(shù),ci和ei分別是第I項的系數(shù)和指數(shù),序列按照指數(shù)降序排列; (3)多項式a和b相加,建立多項式a+b (4)多項式a和b相減,建立多項式a-b.
上傳時間: 2016-10-25
上傳用戶:時代電子小智
This document accompanies a sample co-installer that can be used in conjunction with an INF file to install additional device INF files on the target system during a device installation. The instructions herein apply to the Microsoft Windows 2000 and Windows XP and Windows Server 2003 operating systems. The sample co-installer described in this article interprets CopyINF directives in a [DDInstall] section in an INF file. The sample demonstrates using a co-installer to perform processing after a device has been installed, parsing the INF section that is being used for the installation, and the use of the SetupCopyOEMInf, SetupGetInfInformation, SetupQueryInfOriginalFileInformation and SetupDiGetActualSectionToInstall APIs.
標簽: co-installer accompanies conjunction document
上傳時間: 2014-02-28
上傳用戶:gououo
實現(xiàn)一位加法器的設計,假設輸入?yún)?shù)為A,B,則輸出為A,B的和
標簽: 加法器
上傳時間: 2017-01-02
上傳用戶:baiom
it is a verilog code written for FIFO in modelsim simulator and it will synthesize in xinlix ise 8.2i.i have tested it om my kit.[i mae my own kit for spartan2 device].you can use this code in any DSP project in which data entry is required.
標簽: synthesize simulator modelsim verilog
上傳時間: 2014-06-26
上傳用戶:zhuyibin
list is a data dtructure. this is a data structure type implemantation and it is implemented in C prgramming language. General header contains pointer to object so list.c in c is implemented in generic way.
標簽: data implemantation implemented dtructure
上傳時間: 2017-03-27
上傳用戶:LIKE
一道程序編譯順序的考題,涉及到函數(shù)調用的先后順序及運算符號的優(yōu)先級等問題。下面我展開給你講。 C的程序編譯總是從main函數(shù)開始的,這道題的重點在“fun((int)fun(a+c,b),a-c)) ”語句。 系統(tǒng)首先要確定最外層 fun()函數(shù)的實參,第一個參數(shù)的確定需要遞歸調用fun()函數(shù)(不妨稱其為內層函數(shù))。內層函數(shù)的兩個參數(shù)分別為x=a+b=2+8=10、y=b=5,執(zhí)行函數(shù)體x+y=10+5=15,于是得外層函數(shù)的參數(shù)x=15。其另一個參數(shù)y=a-c=2-b=-6,再次執(zhí)行函數(shù)體,得最終返回值x+y=15+(-6)=9。
標簽: 程序編譯
上傳時間: 2014-12-03
上傳用戶:徐孺
建立兩個任務AB,A可以掛起B(yǎng),同時也可以恢復B
標簽:
上傳時間: 2017-06-02
上傳用戶:han_zh
Tic tac toe is (exactly what re your thinking) and it s the first game I made. Made it in one whole day in Turbo C. It uses primitive graphics drawing and also demonstrates how to output an image. Written in C, also uses a library I got from the net (included) for image output.
標簽: thinking exactly first whole
上傳時間: 2017-08-13
上傳用戶:xhz1993