De som köpt den här boken har ofta också köpt What's Your Dream? av Simon Squibb (inbunden).
Köp båda 2 för 574 krcontents
about the authors iii
preface ix
general overview of the book xi
acknowledgments xiii
chapter 1 algorithms, flowcharts and programs 1
1.1 algorithms 1
1.2 flowcharts 5
1.2.1 flowchart symbols 6
1.2.2 rules for the design of the flowchart 8
1.3 types of data 9
1.3.1 identifiers 11
1.3.2 variables 12
1.3.3 constants 15
1.4 operators 15
1.4.1 arithmetic operators 15
1.4.2 increment and decrement operators 19
1.4.3 logical operators 20
1.4.4 simple assignment operators 22
1.4.5 relational operators 22
1.4.6 operator priorities 24
1.5 programs 25
1.5.1 the java development environments 28
1.5.2 netbeans 29
1.5.3 eclipse 32
1.5.4 java escape sequences 35
1.5.5 printing format: the printf function 37
chapter 2 the first programs 40
2.1 introduction 40
2.2 solving problems 40
chapter 3 selection statements 61
3.1 introduction 61
3.2 the simple if selection statement 62
3.3 the double if-else selection statement 70
3.4 the multiple switch selection statement 82
3.5 nested selection statements 98
3.6 selection statements: other uses 111
chapter 4 repetitive statements 124
4.1 introduction 124
4.2 the for repetitive statement 125
4.3 the while repetition statement 165
4.4 the do while repetition statement 198
4.5 nested repetition statements 206
4.6 practice problems 225