• 双语版C++程序设计
21年品牌 40万+商家 超1.5亿件商品

双语版C++程序设计

正版保障 假一赔十 可开发票

26.62 4.8折 55 全新

库存4件

广东广州
认证卖家担保交易快速发货售后保障

作者(爱尔兰)Paul Kelly(P. 凯利) 著

出版社电子工业出版社

ISBN9787121293580

出版时间2015-05

装帧平装

开本16开

定价55元

货号8789136

上书时间2024-09-04

灵感书店

三年老店
已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:全新
商品描述
作者简介
Paul Kelly,爱尔兰都柏林工业大学(DIT)的不错讲师PaulKelly。Kelly老师长期从事程序设计类课程的教学工作,在程序设计类课程教学方面教学实践经验丰富,在国外已先后出版多本程序设计语言类书籍。

苏小红,哈尔滨工业大学计算机学院博士生导师,计算机应用技术专家,研究领域主要是色彩匹配,信息融合,空间计算,人工神经网络,进化算法,计算机图形学,灰色预测,彩色图像处理等。

目录

目? 录

Chapter One Typographic Conventions(绪论)?1
1.1 What is a computer program? (什么是计算机程序 )?1
1.2 Developing a computer program(开发计算机程序) ?2
1.2.1 Program development cycle ?2
1.3 Learning C  (学习 C  )?4
1.4 Web site for this book(本书的)?4
1.5 Brief history of C  (C  简史) ?4
1.6 ANSI/ISO C   standard(ANSI/ISO C  标准) ?5
Chapter Two Beginning to Program in C  (C  编程入门)?6
2.1 Constants(常量)?6
2.2 Variables(变量)?6
2.3 Simple output to the screen(简单的屏幕输出)?7
2.4 Comments(注释)?9
2.5 Data types(数据类型)?10
2.5.1 Short integer data types?10
2.5.2 Long integer data types?10
2.5.3 Boolean data types?11
2.5.4 Double floating-point data types?11
2.5.5 Unsigned integer data types?11
2.6 Data type sizes(数据类型的大小)?11
2.7 Operators (运算符)?12
2.7.1 The assignment operator?12
2.7.2 Arithmetic operators?12
2.7.3 Increment and decrement operators?13
2.7.4 Combined assignment operators?15
2.8 Operator precedence(运算符的优先级)?16
2.9 Data type conversions and casts(类型转换和强转)?18
Programming pitfalls?20
Quick syntax reference?21
Exercises?22
Chapter Three Keyboard Input and Screen Output(键盘输入和屏幕输出)?26
3.1 Simple keyboard input(简单的键盘输入)?26
3.2 Manipulators(流操纵符)?28
3.3 Single-character input and output(单个字符的输入和输出)?30
Programming pitfalls?32
Quick syntax reference?32
Exercises?32
Chapter Four Selection and Iteration(选择与循环)?34
4.1 Selection(选择)?34
4.1.1 The if statement?34
4.1.2 The if-else statement?35
4.1.3 Compound statements?35
4.1.4 Logical operators?37
4.1.5 Nested if statements?37
4.1.6 The switch statement?37
4.1.7 The conditional operator? :?39
4.2 Iteration(循环)?40
4.2.1 The while statement?40
4.2.2 The do-while loop?42
4.2.3 The for statement?43
4.2.4 Nested loops?45
Programming pitfalls?47
Quick syntax reference?49
Exercises?50
Chapter Five Arrays and Structures(数组和结构体)?53
5.1 Arrays(数组)?53
5.1.1 Introduction?53
5.1.2 Initialising an array?56
5.1.3 Two-dimensional arrays?57
5.1.4 Initialising a two-dimensional array?59
5.1.5 Multi-dimensional arrays?60
5.2 Structures(结构体)?60
5.2.1 Introduction?60
5.2.2 Declaring a structure?61
5.2.3 Initialising a structure variable?63
5.2.4 Nested structures?64
5.3 The typedef statement(typedef 语句)?65
5.4 Arrays of structures(结构体数组)?66
5.5 Enumerated data types(枚举数据类型)?66
Programming pitfalls?68
Quick syntax reference?68
Exercises?69
Chapter Six Strings(字符串)?72
6.1 C-strings(C 风格字符串)?72
6.2 C-string input and output(C 风格字符串的输入和输出)?73
6.3 Accessing individual characters of a C-string(访问C 风格字符串中的单个字符)?77
6.4 C-string functions(C 风格字符串函数)?77
6.4.1 Finding the length of a C-string?78
6.4.2 Copying a C-string?78
6.4.3 C-string concatenation?79
6.4.4 Comparing C-strings?79
6.4.5 Other C-string functions?79
6.4.6 Converting numeric C-strings to numbers?80
6.5 C   strings(C   字符串)?80
6.5.1 string initialisation and assignment?82
6.5.2 string concatenation?84
6.5.3 string length, string indexing and sub-strings?85
6.5.4 string replace, erase, insert and empty strings?86
6.5.5 string searching?88
6.5.6 string comparisons?89
6.5.7 string input?91
6.5.8 string conversions?92
6.6 Arrays of strings(string 类型的数组)?93
6.7 Character classification(字符分类)?94
Programming pitfalls?96
Quick syntax reference?96
Exercises?97
Chapter Seven Functions(函数)?100
7.1 Introduction(引言)?100
7.2 Function arguments(函数实参)?102
7.3 Default parameter values(默认的形参值)?105
7.4 Returning a value from a function(从函数返回一个值)?106
7.5 Inline functions(内联函数)?107
7.6 Passing arguments by value(按值传递实参)?108
7.7 Passing arguments by reference(按引用传递实参)?109
7.8 Passing a one-dimensional array to a function(向函数传递一维数组)?112
7.9 Passing a multi-dimensional array to a function(向函数传递多维数组)?115
7.10 Passing a structure variable to a function(向函数传递结构体变量)?116
7.11 Passing a string to function(向函数传递字符串)?118
7.11.1 Passing a C   string to a function?118
7.11.2 Passing a C-string to a function?119
7.12 Recursion(递归)?120
7.13 Function overloading(函数重载)?122
7.14 Storage classes auto and static? (auto 和static 存储类型)?123
7.14.1 auto?123
7.14.2 static?124
7.15 The scope of a variable(变量的作用域)?125
7.15.1 Block scope?125
7.15.2 Global scope?126
7.15.3 Reusing a variable name?127
7.16 Mathemat

内容摘要
 本书由在计算机程序设计方面有着丰富教学和实践经验的中外作者合作编写。本书内容共分14章,由浅入深、全面介绍C++程序设计方法。本书通俗易懂
,例子贴近生活,尤其强调读者的亲自参与意识。所
有实例经过精心挑选。每章都为初学者提供了常见错误分析,每章结尾有很多有趣的习题,可以提高读者上机编程的兴趣。
凯利、苏小红编著的《双语版C++程序设计(第2版国家双语教学示范课程使用教材)》是国内首次出版的中英文对照混排式双语版C++程序设计教材的更新版,既方便初学者熟悉相关概念和内容,也
便于英文非母语的读者熟悉英文专业词汇。
本书可作为高等学校计算机、软件工程和其他理工类专业的C++程序设计双语教材,也可供程序员和编程爱好者参考使用。

主编推荐


精彩内容
本书由在计算机程序设计方面有着丰富教学和实践经验的中外作者合作编写。本书内容共分14章,由浅入深、全面介绍C 程序设计方法。本书通俗易懂,例子贴近生活,尤其强调读者的亲自参与意识。所有实例经过精心挑选。每章都为初学者提供了常见错误分析,每章结尾有很多有趣的习题,可以提高读者上机编程的兴趣。本书是国内次出版的中英文对照混排式双语版C 程序设计教材的更新版,既方便初学者熟悉相关概念和内容,也便于英文非母语的读者熟悉英文专业词汇。

媒体评论


   相关推荐   

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP