您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 3D Game Engine Architecture

  2. Chapter 1 Introduction 1 1.1 Drawing a Triangle 2 1.2 Drawing a Triangle Mesh 17 1.3 Drawing a Complicated Scene 27 1.4 Abstraction of Systems 27 Chapter 2 Core Systems 31 2.1 The Low-Level System 31 2.1.1 Basic Data Structures 33 2.1.2 Encapsulatin
  3. 所属分类:C++

    • 发布日期:2009-04-29
    • 文件大小:6291456
    • 提供者:netbuffalo
  1. C语言程序设计经典例子

  2. 适用于初学者    经典c程序100例==51--60 【程序51】 题目:学习使用按位与 & 。    1.程序分析:0&0=0; 0&1=0; 1&0=0; 1&1=1 2.程序源代码: #include "stdio.h" main() { int a,b; a=077; b=a&3; printf("\40: The a & b(decimal) is %d \n",b); b&=7; printf(&quo t;\40: The a & b(decimal) is %d \n",b)
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:5120
    • 提供者:fanhaoqiang
  1. 税率计算delphi代码

  2. 写给老婆用的计算器,含代码 mmo1.Text := '不需要缴税' ; if spe1.Value < 2000 then exit else i:= spe1.Value - 2000; if i<=500 then m:= i * 0.05 else if i <= 2000 then m:= i * 0.1 - 25 else if i <= 5000 then m:= i * 0.15 - 125 else if i <= 20000 then m:=
  3. 所属分类:Delphi

    • 发布日期:2009-06-27
    • 文件大小:196608
    • 提供者:warrially
  1. 深入理解计算机系统(英文版)

  2. Contents Preface i 1 Introduction 1 1.1 Information isBits inContext . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 1.2 Programs areTranslated byOtherPrograms intoDifferent Forms . . . . . . . . . . . . . . . 3 1.3 ItPays toUnde
  3. 所属分类:Web开发

    • 发布日期:2009-10-01
    • 文件大小:4194304
    • 提供者:wang3113
  1. degital electronics

  2. Preface xxi 1 Number Systems 1 1.1 Analogue Versus Digital 1 1.2 Introduction to Number Systems 2 1.3 Decimal Number System 2 1.4 Binary Number System 3 1.4.1 Advantages 3 1.5 Octal Number System 4 1.6 Hexadecimal Number System 4 1.7 Number Systems
  3. 所属分类:Access

    • 发布日期:2010-02-03
    • 文件大小:9437184
    • 提供者:mickeyliqy
  1. 查询手册 C语言库函数

  2. 学习C的朋友可以看看。 函数名: delay 功 能: 将程序的执行暂停一段时间(毫秒) 用 法: void delay(unsigned milliseconds); 程序例: /* Emits a 440-Hz tone for 500 milliseconds */ #include int main(void) { sound(440); delay(500); nosound(); return 0; } 函数名: delline 功 能: 在文本窗口中删去一行 用 法: void
  3. 所属分类:C

    • 发布日期:2010-09-03
    • 文件大小:348160
    • 提供者:z812413584
  1. 调试圣经——《Debugging with GDB, 9th》

  2. Table of Contentsl Summary of GDBm Free softwarem Free Software Needs Free Documentationm Contributors to GDBl A Sample GDB Sessionl Getting In and Out of GDBm Invoking GDBn Choosing filesn Choosing modesm Quitting GDBm Shell commandsl GDB Commandsm
  3. 所属分类:C

    • 发布日期:2008-03-06
    • 文件大小:2097152
    • 提供者:erway
  1. A Practical Guide to Ubuntu Linux Ubuntu Linux 实战手册

  2. A Practical Guide to Ubuntu Linux Ubuntu Linux 实战手册 183 7 The Shell 219 PART III Digging into Ubuntu Linux 249 8 Linux GUIs: X and GNOME 251 9 The Bourne Again Shell 275 10 Networking and the Internet 353 11 Programming the Bourne Again Shell 395 x
  3. 所属分类:Linux

    • 发布日期:2010-12-08
    • 文件大小:10485760
    • 提供者:shaoguangleo
  1. Debugging with GDB --2001年5.3

  2. Table of Contents Summary of GDB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Free software . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Free Software Needs Free Documentation . . .
  3. 所属分类:C

    • 发布日期:2010-12-22
    • 文件大小:1048576
    • 提供者:shaoguangleo
  1. Debugging with GDB --2002年5.11

  2. Table of Contents q q q q q Summary of GDB r Free software r Free Software Needs Free Documentation r Contributors to GDB A Sample GDB Session Getting In and Out of GDB r Invoking GDB s Choosing files s Choosing modes r Quitting GDB r Shell commands
  3. 所属分类:C

    • 发布日期:2010-12-22
    • 文件大小:1048576
    • 提供者:shaoguangleo
  1. Debugging with GDB --2003年6.0

  2. Table of Contents Summary of gdb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Free software . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Free Software Needs Free Documentation . .
  3. 所属分类:C

    • 发布日期:2010-12-22
    • 文件大小:1048576
    • 提供者:shaoguangleo
  1. PCFG parser

  2. 1. 实现了PCFG算法的内向和外向算法,以及Viterbi算法的源代码(500 lines) 2. 内部还有一个基于字符匹配的聊天机器人小程序(300 lines)
  3. 所属分类:C++

    • 发布日期:2013-04-22
    • 文件大小:19456
    • 提供者:mingspy
  1. 500 lines or less

  2. 英文版,仅供学习,版权归作者所有
  3. 所属分类:Web开发

    • 发布日期:2017-04-13
    • 文件大小:7340032
    • 提供者:qq_25013919
  1. 500lines代码,供学习

  2. 500lines,开源程序架构,旨在用500行之内的代码来完成一个项目,python的入门级神书
  3. 所属分类:Python

    • 发布日期:2018-05-05
    • 文件大小:44040192
    • 提供者:qq_39437389
  1. 500 Lines or Less

  2. 500 Lines or Less,python开源项目大集合,适合python进阶
  3. 所属分类:Python

    • 发布日期:2018-05-10
    • 文件大小:9437184
    • 提供者:qq_24027563
  1. The Architecture of Open Source Applications (volume1)(中文版,带目录)

  2. 此为 (中文版) AOSA官网: http://aosabook.org/en/index.html "500 Lines or Less", the fourth volume the AOSA series 1.The Architecture of Open Source Applications (volume1)
  3. 所属分类:其它

    • 发布日期:2018-09-09
    • 文件大小:1048576
    • 提供者:shede333
  1. 500 Lines or Less

  2. 20多个Python项目的讲解与实践,可以帮助读者从代码级别理解和掌握使用Python 编写若干方面应用的实践经验。This book provides you with the chance to study how 26 experienced programmers think when they are building something new. The programs you will read about in this book were all written from s
  3. 所属分类:专业指导

    • 发布日期:2018-09-12
    • 文件大小:10485760
    • 提供者:weixin_42212193
  1. 500 Lines or Less _ A Python Interpreter Written in Python.pdf

  2. 500 Lines or Less _ A Python Interpreter Written in Python
  3. 所属分类:Python

    • 发布日期:2019-05-14
    • 文件大小:488448
    • 提供者:dangzhiming
  1. programmingpython-ch15.pdf

  2. “Use the Source, Luke” TheprecedingchapterintroducedPython’sclient-sideInternettoolset—thestan- dardlibrarymodulesavailableforemail,FTP,networknews,andmore,fromwithin aPythonscr ipt.Thischapterpicksupwherethelastoneleftoffandpresentsacom- pleteclient
  3. 所属分类:Python

    • 发布日期:2019-08-18
    • 文件大小:3145728
    • 提供者:drjiachen
  1. 500 Lines or Less.zip

  2. 500 Lines or Less focuses on the design decisions that programmers make in the small when they are building something new. The programs you will read about in this book were all written from scratch for this purpose.
  3. 所属分类:互联网

    • 发布日期:2021-02-01
    • 文件大小:7340032
    • 提供者:WUDIxi
« 12 3 4 »