自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (5)
  • 收藏
  • 关注

原创 分享:Dell1420 开机键盘没有响应修理经过

近日,Dell 1420 开机键盘没有响应,用USB键盘可以用。星期六拿到深圳华强电子广场五楼某个维修中心,经过换键盘130元,正常。用了第三天,又出现同样故障,晕!第二个星期六,又拿到同一个维修中心,又换了另一个键盘,不正常,老板娘说可能主板有问题,晕!只能到另一间同一层的X易修理,键盘没有坏,换了主板跟键盘的蕊片,150元,哈,正常啦!用了第二天,又出现同样故障。第三个星期六,又到X易修理,说

2009-07-27 15:32:00 682

数据结构和算法导学 pdf 分七章

目录 第 一 章 概 论 .............................................................................................................................. 3 第 二 章 线 性 表 ....................................................................................................................... 4 第 三 章 栈 和 队 列 ................................................................................................................. 8 第 四 章 串 .............................................................................................................................. ... 15 第 五 章 多 维 数 组 和 广 义 表 ...................................................................................... 18 第 六 章 树 .............................................................................................................................. ... 20 第 七 章 图 ..........................................................................................................................……

2009-07-22

C语言入门经典 (第四版英文带书签)

programs as quickly and easily as possible. This is the tutorial for you if ?You're a newcomer to programming but you want to plunge straight into the C language and learn about programming and writing C programs right from the start. ?You've done a little bit of programming before, so you understand the concepts behind it? maybe you've used BASIC or PASCAL. Nowyou're keen to learn C and develop your programming skills further. This book doesn't assume any previous programming knowledge on your part, but it does move quickly from the basics to the real meat of the subject. By the end of Beginning C, you'll have a thorough grounding in programming the C language. Contents About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii ■CHAPTER 1 Programming in C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Creating C Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Editing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Compiling. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Linking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Executing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Creating Your First Program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 Editing Your First Program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Dealing with Errors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Dissecting a Simple Program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Preprocessing Directives . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Defining the main() Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 Keywords . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 The Body of a Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Outputting Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Control Characters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Developing Programs in C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Understanding the Problem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Detailed Design. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Implementation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Functions and Modular Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Common Mistakes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 Points to Remember . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20

2009-07-22

LoadRunner完整教程PDF

对于LoadRunner有详实的介绍,不仅有文字,而且有图释。是一部关于LoadRunner的不可多得的教程,让你真切地了解这一测试软件的功能效用。

2009-07-03

2008年信息系统项目管理师试题分析

2008年上半年和下半年信息系统项目管理师试题分析

2009-07-03

PMP认证复习模拟题资料

200道全真模拟题 职业道德40题 PMP模拟题中英对照

2009-06-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除