Structured Programming with C++

- Preis: 129,00 kr
- Preis: €13,99
- Preis: £13,99
- Preis: ₹250
- Preis: $13,99
- Preis: 129,00 kr
- Preis: 129,00 kr
KOSTENLOS downloaden in 4 einfachen Schritten...

Unternehmens-eLibrary
Unsere Business Lösung für Weiterbildung
Das ist ein Premium eBook
Bookboon Premium - Erhalten Sie Zugang zu über 800 eBooks - ohne Werbeanzeigen
Erhalten Sie kostenlosen Zugang für einen Monat - und 800 andere Bücher mit dem Premium Abo. Sie können das Buch auch einzeln kaufen
- Kostenloses 30-Tage Probeabo. Dann 39,99 kr p. M.
- Kostenloses 30-Tage Probeabo. Dann €5,99 p. M.
- Kostenloses 30-Tage Probeabo. Dann £4,99 p. M.
- Kostenloses 30-Tage Probeabo. Dann ₹299 p. M.
- Kostenloses 30-Tage Probeabo. Dann $3,99 p. M.
- Kostenloses 30-Tage Probeabo. Dann 39,99 kr p. M.
- Kostenloses 30-Tage Probeabo. Dann 39,99 kr p. M.


Unternehmens-eLibrary
Unsere Business Lösung für Weiterbildung
User, die diesen Artikel angesehen haben, sahen auch
-
Object Oriented Programming using C#
-
Database Design and Implementation A practical introduction using Oracle SQL
-
C Programming in Linux
-
C# 1 Introduction to programming and the C# language
-
A Practical Introduction to 3D Game Development
-
Java 1: Basic syntax and semantics Software Development
-
Mathematics for Computer Scientists
-
Object Oriented Programming using Java
Über das Buch
Bewertungen
Ismail Abdul-Ganiy ★★★★★
Good and comprehensive.
Beschreibung
Structured Programming with C++ is intended as course material for the course Structured Programming with C/C++ at university level. It can also be used as self-learning material.
Each chapter contains theoretical parts and programming examples. At the end of each chapter there is a bunch of exercises for your practice. At the end of the book you will find solutions to the exercises.
The purpose of the book is primarily to teach how to ”think programming” and secondarily to teach C++ code. Therefore, I will emphasize how to focus on the problem solution and prepare the coding
Inhalt
- Introduction to Programming
- What Does It Mean to Program
- Coding
- Compiling and linking
- The First Steps with Visual C++
- Variables
- Introduction
- Why Variables
- Declaring Variables
- Assignment
- Initiating Variables
- Constants
- More about Assignment of Values
- The main function
- Input and Output
- An Entry Program
- Formatted Output
- Invoice Program
- Time Conversion Program
- Type Conversion
- The Random Number Generator
- Game Program
- Summary
- Exercises
- Selections and Loops
- Introduction
- Selection
- if statement
- Price Calculation Program
- Comparison Operators
- Even or Odd
- else if
- and (&&), or (||)
- Conditional Input
- The switch statement
- Menu Program
- Loops
- The while Loop
- The for Loop
- Addition Program
- Double Loop
- Roll Dice
- Two Dice Roll
- Breaking Entry with Ctrl-Z
- Pools
- Equation
- Interrupting a Loop - break
- Summary
- Exercises
- Arrays
- Introduction
- Why Arrays
- Declaring an Array
- Initiating an Array
- Copying an Array
- Comparing Arrays
- Average
- Sales Statistics
- Product File, Search
- Two-Dimensional Array
- Sorting
- Searching a Sorted Array
- Summary
- Exercises
- Strings
- Introduction
- Data Type char
- Menu Program
- Menu Program with Loop
- Christmas Tree
- int - char
- Å, Ä, Ö
- String Array, char[]
- Length of a String
- Upper/Lower Case
- Initials
- Comparing Two Strings
- Copying Strings
- Array with String Arrays
- Sorting Strings
- Substring
- Concatenating Strings
- Interchanging First Name and Surname
- Encryption
- Random Password
- Translation Table
- Summary
- Exercises
- Functions
- Introduction
- What Is a Function
- Average
- Calling a Function
- Several return Statements
- Least of Three Numbers
- Least Item of an Array
- Array As Parameter
- Function and Subfunction
- Function without Return Value
- Replacing Characters in a String
- Declaration Space
- The Word Program
- Override Functions
- Declaration - Definition
- Header Files
- Reference Parameters
- Parameters with Default Values
- Recursive Functions
- Summary
- Exercises
- Files
- Introduction
- Streams
- Reading from a Stream
- Writing to a Stream
- Attaching a File to a Stream
- A Complete Write Program
- A Complete Reading Program
- New Item at the End of the File
- Products and Prices
- Search for a Product Price
- Sorting a File in Memory
- Updating File Content
- Copying Files
- Summary
- Exercises
- Pointers
- Introduction
- What Is a Pointer
- Declaring a Pointer
- Assigning Values to Pointers
- Addresses and char Pointers
- cout and char Pointers
- Price Program with Pointers
- Pointer Arithmetics
- Tax Program
- Functions and Pointers
- Dynamic Memory
- Summary
- Exercises
- Structures
- Introduction
- What Is a Structure
- Defining a Structure
- Declaring and Initiating Structure Variables
- Assigning Values to Structure Members
- A Structure Program
- Array with Structure Variables
- Pointer to Structure
- Structures in the Dynamic Memory
- Structure As Function Parameter
- Summary
- Exercises
- Answers
- Variables
- Selections and Loops
- Arrays
- Strings
- Functions
- Files
- Pointers
- Structures