亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

link-rank

  • 這是初學者學習匯編語言的必備編譯鏈接工具! 先要設置一下環(huán)境變量

    這是初學者學習匯編語言的必備編譯鏈接工具! 先要設置一下環(huán)境變量,下載此壓縮包后,解壓縮到一個路徑,然后將此路徑添加到系統(tǒng)變量的path下,然后在命令行鍵入masm進行編譯,鍵入link進行鏈接

    標簽: 初學者 匯編語言 變量 編譯

    上傳時間: 2014-01-11

    上傳用戶:yzhl1988

  • GPS 接收程序 DEMO。 HsGpsDll Library 1.1 A GPS Control/Component for C/C++ HsGpsDll is a Windows Dyn

    GPS 接收程序 DEMO。 HsGpsDll Library 1.1 A GPS Control/Component for C/C++ HsGpsDll is a Windows Dynamic Link Library which provides access to any NMEA-183 compliant GPS receiver via a serial communications port. HsGpsDll is designed for use from Visual C, Visual Basic or other languages, capable of calling DLL functions. HsGpsDll allows a user application to read from a GPS device the current GPS position fix, velocity over ground (speed in kilometers per hour), plus number of of sattelites in view, current altitude (against mean sea level) and UTC date and time

    標簽: HsGpsDll GPS Component Control

    上傳時間: 2014-07-17

    上傳用戶:thuyenvinh

  • 實驗內(nèi)容: 編制一程序

    實驗內(nèi)容: 編制一程序,要求接收從鍵盤輸入的一個班的學生成績,并存放于50字節(jié)的GRADE數(shù)組中,其中GRADE+N保存學號N+1的學生成績。然后根據(jù)GRADE中的學生成績,把學生名次填入50字節(jié)的RANK數(shù)組中,其中RANK+N的內(nèi)容是學號為N+1學生的名次。再按學號把學生順序把學生名次顯示出來。 實驗要求:1.必須畫流程圖。2.本程序要求要有多重循環(huán)和子程序,其中 成績輸入、計算學生名次、顯示學生名次都分別用子程序,也可用宏處理。

    標簽: 實驗 編制 程序

    上傳時間: 2014-12-06

    上傳用戶:cjl42111

  • 從鍵盤接收輸入的一個班的學生成績

    從鍵盤接收輸入的一個班的學生成績,并存放于50字grade數(shù)組中,其中grade+i保存學號為i+1的學生成績。然后根據(jù)grade中的學生成績,把學生名次填入50字rank字數(shù)組中,其中 rank+i的內(nèi)容是學號為i+1學生的名次。再按學號順序把名次從終端上顯示出來。(輸入學生個數(shù)<=50,可以不定)

    標簽: 鍵盤 接收 輸入

    上傳時間: 2017-01-12

    上傳用戶:yangbo69

  • CAN1.c and CAN2.c are a simple example of configuring a CAN network to transmit and receive data o

    CAN1.c and CAN2.c are a simple example of configuring a CAN network to transmit and receive data on a CAN network, and how to move information to and from CAN RAM message objects. Each C8051F040-TB CAN node is configured to send a message when it s P3.7 button is depressed/released, with a 0x11 to indicate the button is pushed, and 0x00 when released. Each node also has a message object configured to receive messages. The C8051 tests the received data and will turn on/off the target board s LED. When one target is loaded with CAN2.c and the other is loaded with CAN1.c, one target board s push-button will control the other target board s LED, establishing a simple control link via the CAN bus and can be observed directly on the target boards.

    標簽: CAN configuring and transmit

    上傳時間: 2013-12-11

    上傳用戶:weiwolkt

  • 1、 有n個學生

    1、 有n個學生,每個學生有m門成績,每個學生的m門成績用一單鏈表實現(xiàn),n個學生所對應n個單鏈表的頭指針用一指針數(shù)組統(tǒng)一存放。 1) 建立該存貯結構。 2) 查找第i個學生的某門課成績。 鏈表中結點結構: struct node {char *nam;/*nam為課程名*/   float sco;/*sco為該門課程的成績*/ struct node *link;/*link為指向下一課程結點的指針*/

    標簽:

    上傳時間: 2013-12-14

    上傳用戶:TF2015

  • Mapack可用來做矩陣運算 Mapack is a .NET class library for basic linear algebra computations. It supports th

    Mapack可用來做矩陣運算 Mapack is a .NET class library for basic linear algebra computations. It supports the following matrix operations and properties: Multiplication, Addition, Subtraction, Determinant, Norm1, Norm2, Frobenius Norm, Infinity Norm, Rank, Condition, Trace, Cholesky, LU, QR, Single Value decomposition, Least Squares solver, Eigenproblem solver, Equation System solver. The algorithms were adapted from Mapack for COM, Lapack and the Java Matrix Package.

    標簽: Mapack computations supports algebra

    上傳時間: 2017-01-26

    上傳用戶:tb_6877751

  • 粒子效果演示(附代碼) 利用C++所提供的一些標準容器很容易實現(xiàn)粒子效果. 簡單的說就是,將粒子數(shù)據(jù)寫在一個類里面,有一個粒子源,不停地生成粒子,然后放入一個stl::list中(push

    粒子效果演示(附代碼) 利用C++所提供的一些標準容器很容易實現(xiàn)粒子效果. 簡單的說就是,將粒子數(shù)據(jù)寫在一個類里面,有一個粒子源,不停地生成粒子,然后放入一個stl::list中(push_back()方法), 然后在一個循環(huán)中遍例粒子鏈表,并渲染粒子,粒子的參數(shù)并不斷更新,如果粒子的ALPHA值小于0,即不可見了,即代表粒子已經(jīng)死亡, 即從list中刪去(erase()方法), 銷毀死去的粒子很重要, 如果搞忘了這一步, 你的內(nèi)存很快就會被吃掉干凈了. 第一個版本是用交錯平面畫的粒子. 第二個版本是用Point Spirit(點精靈)畫的粒子, 可以看看效果上面的區(qū)別 SPACE - 暫停粒子源發(fā)射粒子 LINK中忘記去掉cg.lib cgGL.lib 了, 此程序不需要CG, 如果要編譯請去掉.

    標簽: list push stl 代碼

    上傳時間: 2013-12-15

    上傳用戶:jing911003

  • EE小站

    EE小站,詳細介紹,J-Link GDB Server + Eclipse CDT進行ARM程序調(diào)試

    標簽:

    上傳時間: 2017-02-16

    上傳用戶:heart520beat

  • 安裝說明: 一:將程序上傳至空間 二:運行配置文件 Install.ASP 進行配置安裝 三:安裝完畢,自動跳轉至后臺管理 后臺地址:http://你的域名/Admin

    安裝說明: 一:將程序上傳至空間 二:運行配置文件 Install.ASP 進行配置安裝 三:安裝完畢,自動跳轉至后臺管理 后臺地址:http://你的域名/Admin/Index.ASP 后臺帳號:admin 密碼:admin 認證碼:soyici ************************************************** 官方論壇:http://www.soyici.cn 流量聯(lián)盟:http://www.soyici.com/Link/ **************************************************

    標簽: Install Admin http ASP

    上傳時間: 2013-12-19

    上傳用戶:sxdtlqqjl

主站蜘蛛池模板: 禹城市| 余姚市| 兴化市| 定远县| 大关县| 涞源县| 依安县| 教育| 呼玛县| 诸城市| 衡山县| 始兴县| 玉林市| 格尔木市| 棋牌| 东明县| 尼勒克县| 施甸县| 诸城市| 乌兰浩特市| 宣武区| 会理县| 专栏| 山东| 铁力市| 冀州市| 射洪县| 梁山县| 钟祥市| 阿勒泰市| 长海县| 永吉县| 濉溪县| 苏尼特右旗| 建湖县| 潼关县| 海南省| 怀安县| 富民县| 荔浦县| 城市|