De som köpt den här boken har ofta också köpt Nexus: Una Breve Historia de Las Redes de Infor... av Yuval Noah Harari (häftad).
Köp båda 2 för 583 krThis book is meant for those who want to start programming from point zero. It does not matter if those individuals are children, teenagers, adults or elders, but it is essential that they be curious and motivated to learn something new. Curiosity...
1. algorithms, flowcharts and programs
1.1 algorithms
1.2 flowcharts
1.2.1 flowchart symbols
1.2.2 rules for the design of the flowchart
1.3 types of data
1.3.1 identifiers
1.3.2 variables
1.3.3 constants
1.4 operators
1.4.1 arithmetic operators
1.4.2 Increment and decrement operators
1.4.3 Logical operators
1.4.4 Simple assignment operators
1.4.5 Relational operators
1.4.6 Operator priorities
1.5 programs
1.5.1 the java development environments
1.5.2 netbeans
1.5.3 eclipse
1.5.4 Java escape sequences
1.5.5 printing format: the printf function
2. the first programs
2.1 Introduction
2.2 solving problemsintroduction
3. selection statements
3.1 Introduction
3.2 the simple if selection statement
3.3 the double if-else selection statement
3.4 the multiple switch selection statement
3.5 nested selection statements
3.6 Selection statements: other uses
4. repetitive statements
4.1 Introduction
4.2 the for repetition statement
4.3 the while repetition statement
4.4 the do-while repetition statement
4.5 nested repetition statements
4.6 practice problems