|
|
|
|
LEADER |
00000cam a2200000Mi 4500 |
001 |
OR_ocn893677227 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cn||||||||| |
008 |
141017t20152015njua o 001 0 eng d |
010 |
|
|
|a 2014937186
|
040 |
|
|
|a E7B
|b eng
|e rda
|e pn
|c E7B
|d OCLCO
|d YDXCP
|d OCLCQ
|d STF
|d B24X7
|d OCLCF
|d UMI
|d DEBBG
|d COO
|d GPM
|d OCLCQ
|d COCUF
|d CNNOR
|d MOR
|d CCO
|d PIFAG
|d LIV
|d OCLCQ
|d U3W
|d CEF
|d OCLCQ
|d INT
|d VT2
|d OCLCQ
|d WYU
|d G3B
|d TKN
|d OCLCQ
|d UAB
|d HS0
|d OCLCO
|d OCLCQ
|
019 |
|
|
|a 902702569
|a 903395579
|a 904664833
|a 1055329597
|a 1066454444
|a 1081183617
|a 1103276108
|a 1129344325
|a 1153005603
|a 1162492584
|a 1192340167
|a 1228578826
|a 1240516536
|
020 |
|
|
|a 9781118823897
|q (e-book)
|
020 |
|
|
|a 1118823893
|q (e-book)
|
020 |
|
|
|a 9781118823934
|
020 |
|
|
|a 1118823931
|
020 |
|
|
|a 1118823877
|
020 |
|
|
|a 9781118823873
|
020 |
|
|
|z 9781118823873
|
029 |
1 |
|
|a AU@
|b 000059333027
|
029 |
1 |
|
|a CHNEW
|b 000695527
|
029 |
1 |
|
|a CHNEW
|b 000695533
|
029 |
1 |
|
|a DEBBG
|b BV042487498
|
029 |
1 |
|
|a DEBSZ
|b 434828963
|
029 |
1 |
|
|a GBVCP
|b 882841408
|
035 |
|
|
|a (OCoLC)893677227
|z (OCoLC)902702569
|z (OCoLC)903395579
|z (OCoLC)904664833
|z (OCoLC)1055329597
|z (OCoLC)1066454444
|z (OCoLC)1081183617
|z (OCoLC)1103276108
|z (OCoLC)1129344325
|z (OCoLC)1153005603
|z (OCoLC)1162492584
|z (OCoLC)1192340167
|z (OCoLC)1228578826
|z (OCoLC)1240516536
|
037 |
|
|
|a CL0500000551
|b Safari Books Online
|
050 |
|
4 |
|a QA76.73.C153
|b .D385 2015eb
|
082 |
0 |
4 |
|a 005.133
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Davis, Stephen R.,
|d 1956-
|e author.
|
245 |
1 |
0 |
|a Beginning programming with C++ for dummies /
|c by Stephen R. Davis.
|
250 |
|
|
|a Second edition.
|
264 |
|
1 |
|a Hoboken, New Jersey :
|b John Wiley & Sons, Inc.,
|c 2015.
|
264 |
|
4 |
|c ©2015
|
300 |
|
|
|a 1 online resource (x, 444 pages) :
|b illustrations.
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
1 |
|
|a For Dummies
|
500 |
|
|
|a "Making Everything Easier!"--Cover.
|
500 |
|
|
|a Includes index.
|
588 |
0 |
|
|a Print version record.
|
520 |
|
|
|a This updated guide explores the basic development concepts and techniques of C++ from a beginner's point of view, and helps make sense of the how and why of C++ programming from the ground up. Beginning with an introduction to how programming languages function, the book goes on to explore how to work with integer expressions and character expressions, keep errors out of code, use loops and functions, divide code into modules, and become a functional programmer. It covers how to master basic development concepts and techniques in C++ and get rid of bugs and write programs that work. All the code from the book and an updated C++ compiler is on the companion website. --
|c Edited summary from book.
|
505 |
0 |
|
|a Title Page; Copyright Page; Table of Contents; Introduction; About This Book; Foolish Assumptions; How This Book Is Organized; Part I: Getting Started with C++ Programming; Part II: Writing a Program: Decisions, Decisions; Part III: Becoming a Procedural Programmer; Part IV: Data Structures; Part V: Object-Oriented Programming; Part VI: Advanced Strokes; Part VII: The Part of Tens; Icons Used in This Book; Beyond the Book; Where to Go from Here; Part I: Getting Started with C++ Programming; Chapter 1: What Is a Program?; How Does My Son Differ from a Computer?; Programming a "Human Computer"
|
505 |
8 |
|
|a Creating the algorithmSetting the tire-changing language; Constructing the program; Computer processors; Computer Languages; High-level languages; The C++ language; Chapter 2: Installing Code::Blocks; Reviewing the Compilation Process; Installing Code::Blocks; Windows installation; Ubuntu Linux installation; Mac OS installation; Setting up Code::Blocks; Testing the Code::Blocks Installation; Creating the project; Testing your default project; Chapter 3: Writing Your First Program; Creating a New Project; Filename extensions; Entering Your Program; Building the Program
|
505 |
8 |
|
|a Finding What Could Go WrongMisspelled commands; Missing semicolon; Using the Online Material; Running the Program; How the Program Works; The template; The Conversion program; Part II: Writing a Program: Decisions, Decisions; Chapter 4: Integer Expressions; Declaring Variables; Variable names; Assigning a value to a variable; Initializing a variable at declaration; Integer Constants; Expressions; Binary operators; Unraveling compound expressions; Unary Operators; The Special Assignment Operators; Chapter 5: Character Expressions; Defining Character Variables; Encoding characters
|
505 |
8 |
|
|a Example of character encodingEncoding Strings of Characters; Special Character Constants; Chapter 6: if I Could Make My Own Decisions; The if Statement; Comparison operators; Say "No" to "No braces"; What Else Is There?; Nesting if Statements; Compound Conditional Expressions; Chapter 7: Switching Paths; Controlling Flow with the switch Statement; Control Fell Through: Did I break It?; Implementing an Example Calculator with the switch Statement; Chapter 8: Debugging Your Programs, Part I; Identifying Types of Errors; Avoiding Introducing Errors; Coding with style
|
505 |
8 |
|
|a Establishing variable naming conventionsFinding the First Error with a Little Help; Finding the Run-Time Error; Formulating test data; Executing the test cases; Seeing what's going on in your program; Part III: Becoming a Procedural Programmer; Chapter 9: while Running in Circles; Creating a while Loop; Breaking out of the Middle of a Loop; Nested Loops; Chapter 10: Looping for the Fun of It; The for Parts of Every Loop; Looking at an Example; Getting More Done with the Comma Operator; Chapter 11: Functions, I Declare!; Breaking Your Problem Down into Functions
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a C++ (Computer program language)
|
650 |
|
6 |
|a C++ (Langage de programmation)
|
650 |
|
7 |
|a C++ (Computer program language)
|2 fast
|0 (OCoLC)fst00843286
|
650 |
|
7 |
|a C++ (Computer language)
|2 sears
|
776 |
0 |
8 |
|i Print version:
|a Davis, Stephen.
|t Beginning programming with C++ for dummies.
|b Second edition.
|d Hoboken, New Jersey : John Wiley & Sons, Inc., ©2015
|h x, 444 pages
|k --For dummies.
|z 9781118823873
|
830 |
|
0 |
|a --For dummies.
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781118823934/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Books 24x7
|b B247
|n bks00072682
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10952048
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 12116722
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 12677398
|
994 |
|
|
|a 92
|b IZTAP
|