├── 02 - Itroduction to Cpp Programming ├── 02.16 - Arithmetic │ ├── ex_02_16.cpp │ ├── test_1.txt │ └── test_2.txt ├── 02.17 - Printing │ ├── ex_02_17.cpp │ └── test.txt ├── 02.18 - Comparing Integers │ ├── ex_02_18.cpp │ ├── test_1.txt │ ├── test_2.txt │ └── test_3.txt ├── 02.19 - Arithmetic. Smallest and Largest │ ├── ex_02_19.cpp │ ├── test_1.txt │ └── test_2.txt ├── 02.20 - Diameter Circumference and Area of a Circle │ ├── ex_02_20.cpp │ └── test.txt ├── 02.21 - Displaying Large Letters │ ├── ex_02_21.cpp │ └── test.txt ├── 02.23 - Largest and Smallest Integers │ ├── ex_02_23.cpp │ └── test.txt ├── 02.24 - Odd or Even │ ├── ex_02_24.cpp │ └── test.txt ├── 02.25 - Factors │ ├── ex_02_25.cpp │ └── test.txt ├── 02.26 - Checkerboard Pattern │ ├── ex_02_26.cpp │ └── test.txt ├── 02.27 - Integer Equivalent of a Character │ ├── ex_02_27.cpp │ ├── test_1.txt │ ├── test_2.txt │ ├── test_3.txt │ └── test_4.txt ├── 02.28 - Digits of an Integer │ ├── ex_02_28.cpp │ └── test.txt ├── 02.29 - Table │ ├── ex_02_29.cpp │ └── test.txt └── 02.30 - Body Mass Index Calculator │ ├── ex_02_30.cpp │ └── test.txt ├── 03 - Introduction to Classes ├── 03.09 - Modified Account Class │ ├── Account.h │ ├── AccountTest.cpp │ └── test.txt ├── 03.10 - Invoice Class │ ├── Invoice.h │ ├── InvoiceTest.cpp │ └── test.txt ├── 03.11 - MotorVehicle Class │ ├── MotorVehicle.h │ ├── MotorVehicleTest.cpp │ └── test.txt ├── 03.12 - Date Class │ ├── Date.h │ ├── DateTest.cpp │ └── test.txt ├── 03.13 - Removing Duplicated Code in the main Function │ ├── Account.h │ ├── AccountTest.cpp │ └── test.txt ├── 03.15 - Target-Heart-Rate Calculator │ ├── HeartRates.h │ ├── HeartRatesTest.cpp │ └── test.txt ├── 03.16 - Computerization of Health Records │ ├── HealthProfile.h │ ├── HealthProfileTest.cpp │ └── test.txt └── 03.17 - Automating Electric Energy Purchases │ ├── ElectricBill.h │ ├── ElectricBillTest.cpp │ └── test.txt ├── 04 - Algorithm Development and Control Statements. Part I ├── 04.05 - Untitled │ ├── ex_04_05.cpp │ └── test.txt ├── 04.08 - Untitled │ ├── ex_04_08.cpp │ └── test.txt ├── 04.12 - What Does This Program Do │ ├── Mystery.cpp │ └── test.txt ├── 04.13 - Fuel Usage │ ├── ex_04_13.cpp │ └── test.txt ├── 04.14 - Credit Limits │ ├── ex_04_14.cpp │ └── test.txt ├── 04.15 - Employee Leave Calculator │ ├── ex_04_15.cpp │ └── test.txt ├── 04.16 - Fundraising Initiative Calculator │ ├── ex_04_16.cpp │ └── test.txt ├── 04.17 - Find the Largest │ ├── ex_04_17.cpp │ └── test.txt ├── 04.18 - Tabular Output │ ├── ex_04_18.cpp │ └── test.txt ├── 04.19 - Find the Two Largest Numbers │ ├── ex_04_19.cpp │ └── test.txt ├── 04.20 - Validating User Input │ ├── ex_04_20.cpp │ └── test.txt ├── 04.21 - What Does This Program Do │ ├── Mystery2.cpp │ └── test.txt ├── 04.22 - What Does This Program Do │ ├── Mystery3.cpp │ └── test.txt ├── 04.26 - Square of Asterisks │ ├── ex_04_26.cpp │ └── test.txt ├── 04.27 - Palindromes │ ├── ex_04_27.cpp │ └── test.txt ├── 04.28 - Decimal Equivalent of a Binary Number │ ├── ex_04_28.cpp │ └── test.txt ├── 04.29 - Checkerboard Pattern of Asterisks │ ├── ex_04_29.cpp │ └── test.txt ├── 04.30 - Fibonacci Sequence │ ├── ex_04_30.cpp │ └── test.txt ├── 04.31 - Spheres Circumference Area and Volume │ ├── ex_04_31.cpp │ └── test.txt ├── 04.33 - Sides of a Triangle │ ├── ex_04_33.cpp │ └── test.txt ├── 04.34 - Sides of a Right Triangle │ ├── ex_04_34.cpp │ └── test.txt ├── 04.35 - Factorial │ ├── ex_04_35.cpp │ └── test.txt ├── 04.36 - Modified Account Class │ ├── Account.h │ ├── AccountTest.cpp │ └── test.txt ├── 04.37 - Enforcing Privacy with Cryptography │ ├── ex_04_37.cpp │ └── test.txt ├── 04.38 - World Population Growth │ ├── ex_04_38.cpp │ └── test.txt └── 04.40 - Home Building │ ├── ex_04_40.cpp │ └── test.txt ├── 05 - Control Statements Part II. Logical Operators ├── 05.11 - Find the Smallest Value │ ├── ex_05_11.cpp │ ├── test1.txt │ └── test2.txt ├── 05.12 - Product of the Multiples of 3 │ ├── ex_05_12.cpp │ └── test.txt ├── 05.13 - Factorials │ ├── ex_05_13.cpp │ └── test.txt ├── 05.14 - Modified Compound-Interest Program │ ├── ex_05_14.cpp │ └── test.txt ├── 05.15 - Triangle-Printing Program │ ├── ex_05_15.cpp │ └── test.txt ├── 05.16 - Bar-Chart Printing Program │ ├── ex_05_16.cpp │ └── test.txt ├── 05.17 - Calculating Sales │ ├── ex_05_17.cpp │ └── test.txt ├── 05.18 - What Prints │ ├── ex_05_18.cpp │ └── test.txt ├── 05.19 - Calculating the Value of Pi │ ├── ex_05_19.cpp │ └── test.txt ├── 05.20 - Pythagorean Triples │ ├── ex_05_20.cpp │ └── test.txt ├── 05.21 - Modified Triangle-Printing Program │ ├── ex_05_21.cpp │ └── test.txt ├── 05.22 - De Morgans Laws │ ├── ex_05_22.cpp │ └── test.txt ├── 05.23 - Egg-timer Program │ ├── ex_05_23.cpp │ └── test.txt ├── 05.24 - Modified Egg-timer Program │ ├── ex_05_24.cpp │ ├── test1.txt │ └── test2.txt ├── 05.25 - Removing break and continue │ ├── ex_05_25.cpp │ └── test.txt ├── 05.26 - What does the following program segment do │ ├── ex_05_26.cpp │ └── test.txt ├── 05.27 - Replacing continue │ ├── ex_05_27.cpp │ └── test.txt ├── 05.28 - The Twelve Days of Christmas Song │ ├── ex_05_28.cpp │ └── test.txt ├── 05.29 - Peter Minuit Problem │ ├── ex_05_29.cpp │ ├── test1.txt │ └── test2.txt └── 05.30 - DollarAmount Constructor with Two Parameters │ ├── DollarAmount.h │ ├── ex_05_30.cpp │ └── test.txt ├── 06 - Functions and an Introduction to Recursion ├── 06.03 - Untitled │ ├── ex_06_03.cpp │ └── test.txt ├── 06.10 - Untitled │ ├── ex_06_10.cpp │ └── test.txt ├── 06.11 - Untitled │ ├── ex_06_11.cpp │ └── test.txt ├── 06.12 - Parking Charges │ ├── ex_06_12.cpp │ └── test.txt ├── 06.13 - Rounding Numbers │ ├── ex_06_13.cpp │ └── test.txt ├── 06.14 - Rounding Numbers │ ├── ex_06_14.cpp │ └── test.txt ├── 06.16 - Random Numbers │ ├── ex_06_16.cpp │ └── test.txt ├── 06.17 - Random Numbers │ ├── ex_06_17.cpp │ ├── test1.txt │ └── test2.txt ├── 06.18 - Exponentiation │ ├── ex_06_18.cpp │ └── test.txt ├── 06.19 - Hypotenuse Calculations │ ├── ex_06_19.cpp │ └── test.txt ├── 06.20 - Factors │ ├── ex_06_20.cpp │ └── test.txt ├── 06.21 - Multiple of 3 │ ├── ex_06_21.cpp │ └── test.txt ├── 06.22 - Rectangle of Asterisks │ ├── ex_06_22.cpp │ ├── test1.txt │ └── test2.txt ├── 06.23 - Rectangle of Any Character │ ├── ex_06_23.cpp │ ├── test1.txt │ └── test2.txt ├── 06.24 - Separating Digits │ ├── ex_06_24.cpp │ ├── test1.txt │ └── test2.txt ├── 06.25 - Calculating Number of Minutes │ ├── ex_06_25.cpp │ ├── test1.txt │ ├── test2.txt │ ├── test3.txt │ └── test4.txt ├── 06.26 - Celsius and Fahrenheit Temperatures │ ├── ex_06_26.cpp │ └── test.txt ├── 06.27 - Find the Minimum │ ├── ex_06_27.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 06.28 - Dudeney Numbers │ ├── ex_06_28.cpp │ └── test.txt ├── 06.29 - Prime Numbers │ ├── ex_06_29.cpp │ └── test.txt ├── 06.30 - Reverse Digits │ ├── ex_06_30.cpp │ ├── test1.txt │ └── test2.txt ├── 06.31 - Greatest Common Divisor │ ├── ex_06_31.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 06.32 - Quality Points for Numeric Grades │ ├── ex_06_32.cpp │ ├── test1.txt │ ├── test2.txt │ ├── test3.txt │ ├── test4.txt │ └── test5.txt ├── 06.33 - Coin Tossing │ ├── ex_06_33.cpp │ ├── test1.txt │ └── test2.txt ├── 06.34 - Guess-the-Number Game │ ├── ex_06_34.cpp │ └── test.txt ├── 06.35 - Guess-the-Number Game Modification │ ├── ex_06_35.cpp │ ├── test1.txt │ └── test2.txt ├── 06.36 - Recursive Exponentiation │ ├── ex_06_36.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 06.37 - Fibonacci Series. Iterative Solution │ ├── ex_06_37.cpp │ └── test.txt ├── 06.38 - Towers of Hanoi │ ├── ex_06_38.cpp │ ├── test1.txt │ ├── test2.txt │ ├── test3.txt │ └── test4.txt ├── 06.39 - Towers of Hanoi. Iterative Version │ ├── ex_06_39.cpp │ ├── test1.txt │ └── test2.txt ├── 06.40 - Visualizing Recursion │ ├── ex_06_40.cpp │ └── test.txt ├── 06.41 - Recursive Greatest Common Divisor │ ├── ex_06_41.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 06.42 - Distance Between Points │ ├── ex_06_42.cpp │ ├── test1.txt │ └── test2.txt ├── 06.43 - What Does This Program Do │ ├── ex_06_43.cpp │ └── test.txt ├── 06.44 - Exercise 6.43 Modification │ ├── ex_06_44.cpp │ └── test.txt ├── 06.47 - Craps Game Modification │ ├── ex_06_47.cpp │ ├── test1.txt │ └── test2.txt ├── 06.48 - Circle Area │ ├── ex_06_48.cpp │ └── test.txt ├── 06.49 - Pass-by-Value vs. Pass-by-Reference │ ├── ex_06_49.cpp │ └── test.txt ├── 06.51 - Function Template minimum │ ├── ex_06_51.cpp │ └── test.txt ├── 06.52 - Function Template maximum │ ├── ex_06_52.cpp │ └── test.txt ├── 06.54 - Cpp11 Random Numbers. Modified Craps Game │ ├── ex_06_54.cpp │ └── test.txt ├── 06.57 - Computer-Assisted Instruction │ ├── ex_06_57.cpp │ └── test.txt ├── 06.58 - CAI. Reducing Student Fatigue │ ├── ex_06_58.cpp │ └── test.txt ├── 06.59 - CAI. Monitoring Student Performance │ ├── ex_06_59.cpp │ └── test.txt ├── 06.60 - CAI. Difficulty Levels │ ├── ex_06_60.cpp │ └── test.txt └── 06.61 - CAI. Varying the Types of Problems │ ├── ex_06_61.cpp │ └── test.txt ├── 07 - Class Templates array and vector. Catching Exceptions ├── 07.03 - Write Cpp Statements │ └── ex_07_03.cpp ├── 07.04 - Two-Dimensional array Questions │ ├── ex_07_04.cpp │ └── test.txt ├── 07.08 - Write Cpp Statements │ └── ex_07_08.cpp ├── 07.09 - Two-Dimensional array Questions │ └── ex_07_09.cpp ├── 07.10 - Server Income Ranges │ ├── ex_07_10.cpp │ └── test.txt ├── 07.11 - One-Dimensional array Questions │ ├── ex_07_11.cpp │ └── test.txt ├── 07.13 - Duplicate Elimination with array │ ├── ex_07_13.cpp │ └── test.txt ├── 07.14 - Duplicate Elimination with vector │ ├── ex_07_14.cpp │ └── test.txt ├── 07.16 - Dice Rolling │ ├── ex_07_16.cpp │ ├── test1.txt │ └── test2.txt ├── 07.17 - What Does This Program Do │ ├── ex_07_17.cpp │ └── test.txt ├── 07.18 - Craps Game Modification │ ├── ex_07_18.cpp │ ├── test1.txt │ └── test2.txt ├── 07.19 - Converting vector Example to array │ ├── ex_07_19.cpp │ └── test.txt ├── 07.20 - What Does This Program Do │ ├── ex_07_20.cpp │ └── test.txt ├── 07.21 - Workshop Summary │ ├── ex_07_21.cpp │ └── test.txt ├── 07.22 - Knight-s Tour │ ├── ex_07_22_b.cpp │ ├── ex_07_22_c.cpp │ ├── test_b.txt │ └── test_c.txt ├── 07.23 - Knight-s Tour. Brute Force Approaches │ ├── ex_07_23_a.cpp │ ├── ex_07_23_b.cpp │ ├── ex_07_23_c.cpp │ ├── test_a.txt │ ├── test_b.txt │ └── test_c.txt ├── 07.24 - Eight Queens │ ├── ex_07_24.cpp │ └── test.txt ├── 07.27 - The Sieve of Eratosthenes │ ├── ex_07_27.cpp │ └── test.txt ├── 07.28 - Palindromic Sentences │ ├── ex_07_28.cpp │ └── test.txt ├── 07.29 - Eight Queens │ ├── ex_07_29.cpp │ └── test.txt ├── 07.30 - Print an array │ ├── ex_07_30.cpp │ └── test.txt ├── 07.31 - Print a String Backward │ ├── ex_07_31.cpp │ └── test.txt ├── 07.32 - Find the Maximum Value in an array │ ├── ex_07_32.cpp │ └── test.txt ├── 07.33 - Maze Traversal │ ├── ex_07_33.cpp │ └── test.txt ├── 07.34 - Generating Mazes Randomly │ ├── ex_07_34.cpp │ └── test.txt └── 07.35 - Polling │ ├── ex_07_35.cpp │ └── test.txt ├── 08 - Pointers ├── 08.08 - Write Cpp Statements │ ├── ex_08_08.cpp │ └── test.txt ├── 08.10 - Function Headers and Prototypes │ └── ex_08_10.cpp ├── 08.12 - Simulation. The Tortoise and the Hare │ ├── ex_08_12.cpp │ ├── test_1.txt │ ├── test_2.txt │ └── test_3.txt ├── 08.15 - Machine-Language Programming │ ├── ex_08_15.cpp │ ├── test_a.txt │ ├── test_b.txt │ └── test_c.txt └── 08.16 - Computer Simulator │ ├── ex_08_16.cpp │ ├── test_1.txt │ └── test_2.txt ├── 09 - Classes. A Deeper Look ├── 09.04 - Enhancing Class Time │ ├── Time.cpp │ ├── Time.h │ ├── ex_09_04.cpp │ └── test.txt ├── 09.05 - Quadratic Equations Class │ ├── Quadratic.cpp │ ├── Quadratic.h │ ├── ex_09_05.cpp │ └── test.txt ├── 09.06 - Rational Class │ ├── Rational.cpp │ ├── Rational.h │ ├── ex_09_06.cpp │ └── test.txt ├── 09.07 - Name Class │ ├── Name.cpp │ ├── Name.h │ ├── ex_09_07.cpp │ └── test.txt ├── 09.08 - Student Class │ ├── Student.cpp │ ├── Student.h │ └── ex_09_08.cpp ├── 09.09 - Improving Class Student │ ├── Date.cpp │ ├── Date.h │ ├── Name.cpp │ ├── Name.h │ ├── Student.cpp │ ├── Student.h │ ├── ex_09_09.cpp │ └── test.txt ├── 09.10 - Returning Error Indicators │ ├── Date.cpp │ ├── Date.h │ ├── Name.cpp │ ├── Name.h │ ├── Student.cpp │ ├── Student.h │ ├── ex_09_10.cpp │ └── test.txt ├── 09.11 - Rectangle Class │ ├── Rectangle.cpp │ ├── Rectangle.h │ ├── ex_09_11.cpp │ └── test.txt ├── 09.12 - Enhancing Class Rectangle │ ├── Rectangle.cpp │ ├── Rectangle.h │ ├── ex_09_12.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 09.13 - Enhancing Class Rectangle │ ├── Rectangle.cpp │ ├── Rectangle.h │ ├── ex_09_13.cpp │ ├── test1.txt │ ├── test2.txt │ ├── test3.txt │ └── test4.txt ├── 09.14 - HugeInteger Class │ ├── HugeInteger.cpp │ ├── HugeInteger.h │ ├── ex_09_14.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 09.15 - TicTacToe Class │ ├── TicTacToe.cpp │ ├── TicTacToe.h │ ├── ex_09_15.cpp │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── 09.19 - Date Class Modification │ ├── Date.cpp │ ├── Date.h │ ├── ex_09_19.cpp │ └── test.txt ├── 09.20 - VicobaAccount Class │ ├── VicobaAccount.cpp │ ├── VicobaAccount.h │ ├── ex_09_20.cpp │ └── test.txt ├── 09.21 - IntegerSet Class │ ├── IntegerSet.cpp │ ├── IntegerSet.h │ ├── ex_09_21.cpp │ └── test.txt ├── 09.22 - Time Class Modification │ ├── Time.cpp │ ├── Time.h │ ├── ex_09_22.cpp │ └── test.txt ├── 09.23 - Card Shuffling and Dealing │ ├── Card.cpp │ ├── Card.h │ ├── DeckOfCards.cpp │ ├── DeckOfCards.h │ ├── ex_09_23.cpp │ └── test.txt └── 09.24 - Card Shuffling and Dealing │ ├── Card.cpp │ ├── Card.h │ ├── DeckOfCards.cpp │ ├── DeckOfCards.h │ ├── Hand.cpp │ ├── Hand.h │ ├── ex_09_24.cpp │ ├── test1.txt │ └── test2.txt ├── 10 - Operator Overloading. Class string ├── 10.07 - Overloading the Parentheses Operator │ ├── DoubleSubscriptedArray.cpp │ ├── DoubleSubscriptedArray.h │ ├── ex_10_07.cpp │ └── test.txt ├── 10.08 - Enhanced MotorVehicle Class │ ├── MotorVehicle.cpp │ ├── MotorVehicle.h │ ├── ex_10_08.cpp │ └── test.txt ├── 10.10 - Enhanced Quadratic Class │ ├── Quadratic.cpp │ ├── Quadratic.h │ ├── ex_10_10.cpp │ └── test.txt └── 10.11 - Polynomial Class │ ├── Polynomial.cpp │ ├── Polynomial.h │ ├── Term.cpp │ ├── Term.h │ ├── ex_10_11.cpp │ └── test.txt ├── 11 - Object-Oriented Programming. Inheritance ├── 11.03 - Composition as an Alternative to Inheritance │ ├── BasePlusCommissionEmployee.cpp │ ├── BasePlusCommissionEmployee.h │ ├── CommissionEmployee.cpp │ ├── CommissionEmployee.h │ ├── ex_11_03.cpp │ └── test.txt ├── 11.09 - Package Inheritance Hierarchy │ ├── OvernightPackage.cpp │ ├── OvernightPackage.h │ ├── Package.cpp │ ├── Package.h │ ├── TwoDayPackage.cpp │ ├── TwoDayPackage.h │ ├── ex_11_09.cpp │ └── test.txt └── 11.10 - Account Inheritance Hierarchy │ ├── Account.cpp │ ├── Account.h │ ├── CheckingAccount.cpp │ ├── CheckingAccount.h │ ├── SavingsAccount.cpp │ ├── SavingsAccount.h │ ├── ex_11_10.cpp │ └── test.txt ├── 12 - Object-Oriented Programming. Polymorphism ├── 12.11 - Payroll-System Modification │ ├── BasePlusCommissionEmployee.cpp │ ├── BasePlusCommissionEmployee.h │ ├── CommissionEmployee.cpp │ ├── CommissionEmployee.h │ ├── Date.cpp │ ├── Date.h │ ├── Employee.cpp │ ├── Employee.h │ ├── SalariedEmployee.cpp │ ├── SalariedEmployee.h │ ├── ex_12_11.cpp │ └── test.txt ├── 12.12 - Package Inheritance Hierarchy │ ├── OvernightPackage.cpp │ ├── OvernightPackage.h │ ├── Package.cpp │ ├── Package.h │ ├── TwoDayPackage.cpp │ ├── TwoDayPackage.h │ ├── ex_12_12.cpp │ └── test.txt ├── 12.13 - Polymorphic Banking Program │ ├── Account.cpp │ ├── Account.h │ ├── CheckingAccount.cpp │ ├── CheckingAccount.h │ ├── SavingsAccount.cpp │ ├── SavingsAccount.h │ ├── ex_12_13.cpp │ └── test.txt └── 12.14 - Payroll-System Modification │ ├── BasePlusCommissionEmployee.cpp │ ├── BasePlusCommissionEmployee.h │ ├── CommissionEmployee.cpp │ ├── CommissionEmployee.h │ ├── Date.cpp │ ├── Date.h │ ├── Employee.cpp │ ├── Employee.h │ ├── HourlyWorker.cpp │ ├── HourlyWorker.h │ ├── PieceWorker.cpp │ ├── PieceWorker.h │ ├── SalariedEmployee.cpp │ ├── SalariedEmployee.h │ ├── ex_12_14.cpp │ └── test.txt ├── 13 - Stream Input-Output. A Deeper Look ├── 13.06 - Write Cpp Statements │ └── ex_13_06.cpp ├── 13.07 - Inputting Decimal, Octal and Hexadecimal Values │ ├── ex_13_07.cpp │ └── test.txt ├── 13.11 - Length of a String │ ├── ex_13_11.cpp │ └── test.txt ├── 13.12 - Displaying numbers in different bases │ ├── ex_13_12.cpp │ └── test.txt ├── 13.13 - Dealing with extra input characters │ ├── ex_13_13.cpp │ └── test.txt ├── 13.14 - Reading Phone Numbers │ ├── PhoneNumber.cpp │ ├── PhoneNumber.h │ ├── ex_13_14.cpp │ ├── test1.txt │ └── test2.txt ├── 13.15 - Point Class │ ├── Point.cpp │ ├── Point.h │ ├── ex_13_15.cpp │ ├── test1.txt │ └── test2.txt ├── 13.16 - Complex Class │ ├── Complex.cpp │ ├── Complex.h │ ├── ex_13_16.cpp │ ├── test1.txt │ └── test2.txt └── 13.17 - Computing descriptive statistics for a data set │ ├── ex_13_17.cpp │ └── test.txt ├── 14 - File Processing ├── 14.06 - File Matching │ ├── ex_14_06.cpp │ ├── newmast.dat │ ├── oldmast.dat │ ├── test.txt │ └── trans.dat ├── 14.07 - File Matching Test Data │ ├── ex_14_07.cpp │ ├── oldmast.dat │ ├── test.txt │ └── trans.dat ├── 14.08 - Efficiency of binary files │ ├── bin.dat │ ├── ex_14_08.cpp │ ├── test.txt │ └── txt.dat ├── 14.09 - File-Matching Enhancement │ ├── ex_14_09.cpp │ ├── newmast.dat │ ├── oldmast.dat │ ├── test.txt │ └── trans.dat ├── 14.10 - A series of statements │ ├── ex_14_10.cpp │ └── nameage.dat ├── 14.11 - Hardware Inventory │ ├── Tool.cpp │ ├── Tool.h │ ├── ex_14_11.cpp │ ├── hardware.dat │ └── test.txt ├── 14.12 - Telephone-Number Word Generator │ ├── 6862377.txt │ ├── ex_14_12.cpp │ └── test.txt ├── 14.13 - A simple dictionary │ ├── Belarusian.dat │ ├── Entry.h │ ├── ex_14_13.cpp │ └── test.txt └── 14.14 - Phishing Scanner │ ├── email.txt │ ├── ex_14_14.cpp │ ├── phishing.txt │ └── test.txt ├── 15 - Standard Library Containers and Iterators ├── 15.22 - Palindromes │ ├── ex_15_22.cpp │ └── test.txt ├── 15.23 - Sieve of Eratosthenes with bitset │ ├── ex_15_23.cpp │ └── test.txt ├── 15.24 - Sieve of Eratosthenes │ ├── ex_15_24.cpp │ └── test.txt └── 15.25 - Prime Factors │ ├── ex_15_25.cpp │ └── test.txt ├── 16 - Standard Library Algorithms ├── 16.08 - Duplicate Elimination │ ├── ex_16_08.cpp │ └── test.txt ├── 16.09 - Duplicate Elimination │ ├── ex_16_09.cpp │ └── test.txt ├── 16.10 - Reading Data from a File │ ├── ex_16_10.cpp │ ├── integers.txt │ └── test.txt ├── 16.11 - Merging Ordered Lists │ ├── ex_16_11.cpp │ └── test.txt ├── 16.12 - Palindrome Tester │ ├── ex_16_12.cpp │ └── test.txt └── 16.13 - Enhanced Palindrome Tester │ ├── ex_16_13.cpp │ └── test.txt ├── 17 - Exception Handling. A Deeper Look ├── 17.19 - Exception Handling and Program Control │ ├── NoRealRootException.h │ ├── Quadratic.cpp │ ├── Quadratic.h │ ├── ex_17_19.cpp │ └── test.txt ├── 17.21 - Throwing Exceptions from a catch │ ├── ex_17_21.cpp │ └── test.txt ├── 17.22 - Catching Derived-Class Exceptions │ ├── ex_17_22.cpp │ └── test.txt ├── 17.23 - Throwing the Result of a Conditional Expression │ ├── ex_17_23.cpp │ └── test.txt ├── 17.24 - Local-Variable Destructors │ ├── ex_17_24.cpp │ └── test.txt ├── 17.25 - Member-Object Destructors │ ├── ex_17_25.cpp │ └── test.txt ├── 17.27 - Order of Exception Handlers │ ├── ex_17_27.cpp │ └── test.txt ├── 17.28 - Constructors Throwing Exceptions │ ├── ex_17_28.cpp │ └── test.txt ├── 17.29 - Rethrowing Exceptions │ ├── ex_17_29.cpp │ └── test.txt ├── 17.30 - Uncaught Exceptions │ ├── ex_17_30.cpp │ └── test.txt └── 17.31 - Stack Unwinding │ ├── ex_17_31.cpp │ └── test.txt ├── 18 - Introduction to Custom Templates ├── 18.03 - Operator Overloads in Templates │ ├── ex_18_03.cpp │ └── test.txt ├── 18.04 - Array Class Template │ ├── Array.h │ ├── ex_18_04.cpp │ └── test.txt └── 18.14 - GradeBook Class Template │ ├── GradeBook.h │ ├── ex_18_14.cpp │ ├── test1.txt │ └── test2.txt ├── 19 - Custom Templatized Data Structures ├── 19.06 - Concatenating Lists │ ├── List.h │ ├── ex_19_06.cpp │ └── test.txt ├── 19.07 - Splitting a list │ ├── List.h │ ├── ex_19_07.cpp │ └── test.txt ├── 19.09 - Copying a List in Reverse Order with Singly Linked Lists │ ├── ForwardList.h │ ├── ex_19_09.cpp │ └── test.txt ├── 19.10 - Copying a List in Reverse Order with Doubly Linked Lists │ ├── List.h │ ├── ex_19_10.cpp │ └── test.txt ├── 19.11 - Copying a List in Reverse Order with a Stack and a List │ ├── ForwardList.h │ ├── Stack.h │ ├── ex_19_11.cpp │ └── test.txt ├── 19.12 - Infix-to-Postfix Conversion │ ├── Stack.h │ ├── ex_19_12.cpp │ └── test.txt ├── 19.13 - Postfix Evaluation │ ├── Stack.h │ ├── ex_19_13.cpp │ └── test.txt ├── 19.15 - Supermarket Simulation │ ├── Queue.h │ ├── ex_19_15.cpp │ └── test.txt ├── 19.16 - Constructing a Binary Tree │ ├── Tree.h │ ├── ex_19_16.cpp │ └── test.txt ├── 19.17 - Binary Tree of Strings │ ├── Tree.h │ ├── ex_19_17.cpp │ └── test.txt ├── 19.19 - Depth of a Binary Tree │ ├── Tree.h │ ├── ex_19_19.cpp │ └── test.txt ├── 19.20 - Recursively Print a List Backward │ ├── List.h │ ├── ex_19_20.cpp │ └── test.txt ├── 19.21 - Recursively Search a List │ ├── ForwardList.h │ ├── ex_19_21.cpp │ └── test.txt ├── 19.22 - Binary Tree Search │ ├── Tree.h │ ├── ex_19_22.cpp │ └── test.txt ├── 19.23 - Level-Order Binary Tree Traversal │ ├── Queue.h │ ├── Tree.h │ ├── ex_19_23.cpp │ └── test.txt ├── 19.24 - Printing Trees │ ├── Tree.h │ ├── ex_19_24.cpp │ └── test.txt ├── 19.25 - Insert and Delete Anywhere in a Linked List │ ├── ForwardList.h │ ├── ex_19_25.cpp │ └── test.txt └── 19.26 - List and Queues without Tail Pointers │ ├── ForwardList.h │ ├── ex_19_26.cpp │ └── test.txt ├── 20 - Searching and Sorting ├── 20.05 - Performance of Linear Search │ ├── ex_20_05.cpp │ └── test.txt ├── 20.06 - Enhanced Bubble Sort │ ├── ex_20_06.cpp │ └── test.txt ├── 20.07 - Bucket Sort │ ├── ex_20_07.cpp │ └── test.txt ├── 20.08 - Comparing The Performance of Sorting Algorithms │ ├── array.dat │ ├── ex_20_08.cpp │ └── test.txt └── 20.10 - Quicksort │ ├── ex_20_10.cpp │ └── test.txt ├── 21 - Class string. A Deeper Look ├── 21.07 - Simple Encryption │ ├── ex_21_07.cpp │ └── test.txt ├── 21.08 - Converting a string to upper case │ ├── ex_21_08.cpp │ └── test.txt ├── 21.09 - Converting a string to title case │ ├── ex_21_09.cpp │ └── test.txt ├── 21.10 - String Concatenation │ ├── ex_21_10.cpp │ └── test.txt ├── 21.11 - Sentence letter statistics │ ├── ex_21_11.cpp │ └── test.txt ├── 21.12 - File letter statistics │ ├── ex_21_12.cpp │ ├── file.txt │ └── test.txt ├── 21.13 - Alphabetizing Animal Names │ ├── ex_21_13.cpp │ └── test.txt ├── 21.16 - Counting Palindromes │ ├── ex_21_16.cpp │ └── test.txt ├── 21.17 - Counting Vowels │ ├── ex_21_17.cpp │ └── test.txt ├── 21.18 - String Insertion │ ├── ex_21_18.cpp │ └── test.txt ├── 21.19 - Erasing Characters from a string │ ├── ex_21_19.cpp │ └── test.txt ├── 21.20 - Reversing a string with Iterators │ ├── ex_21_20.cpp │ └── test.txt ├── 21.21 - Recursively Reversing a string with Iterators │ ├── ex_21_21.cpp │ └── test.txt ├── 21.22 - Using the erase Functions with Iterator Arguments │ ├── ex_21_22.cpp │ └── test.txt └── 21.23 - Letter Pyramid │ ├── ex_21_23.cpp │ └── test.txt ├── 22 - Bits, Characters, C Strings and structs ├── 22.05 - Card Shuffling and Dealing │ ├── DeckOfCards.cpp │ ├── DeckOfCards.h │ ├── ex_22_05.cpp │ └── test.txt ├── 22.08 - Division and multiplication via bit shifting │ ├── ex_22_08.cpp │ └── test.txt ├── 22.09 - Printing a Binary Representation of an Integer Value │ ├── ex_22_09.cpp │ └── test.txt ├── 22.10 - Determining a computer's byte ordering │ ├── ex_22_10.cpp │ └── test.txt ├── 22.11 - Setting bits in an integer │ ├── ex_22_11.cpp │ └── test.txt ├── 22.14 - Percentage of letters │ ├── ex_22_14.cpp │ └── test.txt ├── 22.15 - Converting Strings to Integers │ ├── ex_22_15.cpp │ └── test.txt ├── 22.16 - Converting Strings to Floating-Point Numbers │ ├── ex_22_16.cpp │ └── test.txt ├── 22.17 - Searching for Substrings │ ├── ex_22_17.cpp │ └── test.txt ├── 22.18 - Searching for Substrings │ ├── ex_22_18.cpp │ └── test.txt ├── 22.19 - Searching for Characters │ ├── ex_22_19.cpp │ ├── file.txt │ └── test.txt ├── 22.20 - Searching for Characters │ ├── ex_22_20.cpp │ ├── file.txt │ └── test.txt ├── 22.22 - Strings Beginning With A Given Letter │ ├── ex_22_22.cpp │ └── test.txt ├── 22.23 - Strings Ending With Two Given Letters │ ├── ex_22_23.cpp │ └── test.txt ├── 22.24 - Displaying Characters for Given ASCII Codes │ ├── ex_22_24.cpp │ └── test.txt ├── 22.25 - Character Handling Functions │ ├── ex_22_25.cpp │ └── test.txt ├── 22.26 - String Conversion Functions │ ├── ex_22_26.cpp │ └── test.txt ├── 22.27 - String Searching Functions │ ├── ex_22_27.cpp │ └── test.txt ├── 22.28 - Memory Handling Functions │ ├── ex_22_28.cpp │ └── test.txt ├── 22.30 - Comparing Strings │ ├── ex_22_30.cpp │ └── test.txt ├── 22.31 - Comparing Strings │ ├── ex_22_31.cpp │ └── test.txt ├── 22.32 - Randomly Creating Sentences │ ├── ex_22_32.cpp │ └── test.txt ├── 22.34 - Pig Latin │ ├── ex_22_34.cpp │ └── test.txt ├── 22.35 - General Purpose Token Generator │ ├── ex_22_35.cpp │ └── test.txt ├── 22.36 - Tokenizing and Reversing a Sentence │ ├── ex_22_36.cpp │ └── test.txt ├── 22.38 - String Copy and Concatenation Functions │ ├── ex_22_38.cpp │ └── test.txt ├── 22.39 - String Comparison Functions │ ├── ex_22_39.cpp │ └── test.txt ├── 22.40 - String Length Function │ ├── ex_22_40.cpp │ └── test.txt ├── 22.41 - Text Analysis │ ├── ex_22_41.cpp │ └── test.txt ├── 22.42 - Word Processing │ ├── ex_22_42.cpp │ └── test.txt ├── 22.43 - Printing Dates in Various Formats │ ├── ex_22_43.cpp │ └── test.txt ├── 22.44 - Check Protection │ ├── ex_22_44.cpp │ └── test.txt ├── 22.45 - Word Equivalent of a Check Amount │ ├── ex_22_45.cpp │ └── test.txt └── 22.46 - Morse Code │ ├── ex_22_46.cpp │ └── test.txt ├── 26 - ATM Case Study ├── ATM.cpp ├── ATM.h ├── ATMCaseStudy.cpp ├── Account.cpp ├── Account.h ├── BalanceInquiry.cpp ├── BalanceInquiry.h ├── BankDatabase.cpp ├── BankDatabase.h ├── CashDispenser.cpp ├── CashDispenser.h ├── Deposit.cpp ├── Deposit.h ├── DepositSlot.cpp ├── DepositSlot.h ├── Keypad.cpp ├── Keypad.h ├── Screen.cpp ├── Screen.h ├── Transaction.cpp ├── Transaction.h ├── Withdrawal.cpp └── Withdrawal.h ├── E - Preprocessor ├── E04 │ ├── ex_E_04.cpp │ └── test.txt ├── E05 │ ├── ex_E_05.cpp │ └── test.txt ├── E06 │ ├── ex_E_06.cpp │ └── test.txt ├── E07 │ ├── ex_E_07.cpp │ └── test.txt ├── E08 │ ├── ex_E_08.cpp │ └── test.txt ├── E09 │ ├── ex_E_09.cpp │ └── test.txt ├── E10 │ ├── ex_E_10.cpp │ └── test.txt └── E11 │ ├── ex_E_11.cpp │ └── test.txt └── F - C Legacy Code ├── F.02 ├── ex_F_02.cpp └── test.txt ├── F.03 ├── ex_F_03.cpp └── test.txt ├── F.04 ├── ex_F_04.cpp ├── test -a.txt └── test -d.txt ├── F.05 ├── ex_F_05.cpp └── test.txt ├── F.06 ├── ex_F_06.cpp └── test.txt ├── F.07 ├── ex_F_07.cpp ├── input.txt └── output.txt ├── F.08 ├── ex_F_08.cpp └── test.txt ├── F.10 ├── ex_F_10.cpp └── test.txt └── F.11 ├── ex_F_11.cpp ├── test g++.txt └── test msvc.txt /02 - Itroduction to Cpp Programming/02.16 - Arithmetic/ex_02_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.16 - Arithmetic/ex_02_16.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.16 - Arithmetic/test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.16 - Arithmetic/test_1.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.16 - Arithmetic/test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.16 - Arithmetic/test_2.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.17 - Printing/ex_02_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.17 - Printing/ex_02_17.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.17 - Printing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.17 - Printing/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/ex_02_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/ex_02_18.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/test_1.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 42 1 2 | 42 is larger. -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/test_2.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 42 69 2 | 69 is larger. -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/test_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.18 - Comparing Integers/test_3.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/ex_02_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/ex_02_19.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/test_1.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.19 - Arithmetic. Smallest and Largest/test_2.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.20 - Diameter Circumference and Area of a Circle/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.20 - Diameter Circumference and Area of a Circle/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.21 - Displaying Large Letters/ex_02_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.21 - Displaying Large Letters/ex_02_21.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.21 - Displaying Large Letters/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.21 - Displaying Large Letters/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.23 - Largest and Smallest Integers/ex_02_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.23 - Largest and Smallest Integers/ex_02_23.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.23 - Largest and Smallest Integers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.23 - Largest and Smallest Integers/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.24 - Odd or Even/ex_02_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.24 - Odd or Even/ex_02_24.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.24 - Odd or Even/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.24 - Odd or Even/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.25 - Factors/ex_02_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.25 - Factors/ex_02_25.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.25 - Factors/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.25 - Factors/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.26 - Checkerboard Pattern/ex_02_26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.26 - Checkerboard Pattern/ex_02_26.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.26 - Checkerboard Pattern/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.26 - Checkerboard Pattern/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/ex_02_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/ex_02_27.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/test_1.txt: -------------------------------------------------------------------------------- 1 | Character: A 2 | Integer equivalent is 65 -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/test_2.txt: -------------------------------------------------------------------------------- 1 | Character: a 2 | Integer equivalent is 97 -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/test_3.txt: -------------------------------------------------------------------------------- 1 | Character: 0 2 | Integer equivalent is 48 -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.27 - Integer Equivalent of a Character/test_4.txt: -------------------------------------------------------------------------------- 1 | Character: $ 2 | Integer equivalent is 36 -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.28 - Digits of an Integer/ex_02_28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.28 - Digits of an Integer/ex_02_28.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.28 - Digits of an Integer/test.txt: -------------------------------------------------------------------------------- 1 | Four-digit integer: 4315 2 | 5 1 3 4 -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.29 - Table/ex_02_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.29 - Table/ex_02_29.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.29 - Table/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.29 - Table/test.txt -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.30 - Body Mass Index Calculator/ex_02_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.30 - Body Mass Index Calculator/ex_02_30.cpp -------------------------------------------------------------------------------- /02 - Itroduction to Cpp Programming/02.30 - Body Mass Index Calculator/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/02 - Itroduction to Cpp Programming/02.30 - Body Mass Index Calculator/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.09 - Modified Account Class/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.09 - Modified Account Class/Account.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.09 - Modified Account Class/AccountTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.09 - Modified Account Class/AccountTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.09 - Modified Account Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.09 - Modified Account Class/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.10 - Invoice Class/Invoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.10 - Invoice Class/Invoice.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.10 - Invoice Class/InvoiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.10 - Invoice Class/InvoiceTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.10 - Invoice Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.10 - Invoice Class/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.11 - MotorVehicle Class/MotorVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.11 - MotorVehicle Class/MotorVehicle.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.11 - MotorVehicle Class/MotorVehicleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.11 - MotorVehicle Class/MotorVehicleTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.11 - MotorVehicle Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.11 - MotorVehicle Class/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.12 - Date Class/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.12 - Date Class/Date.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.12 - Date Class/DateTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.12 - Date Class/DateTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.12 - Date Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.12 - Date Class/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.13 - Removing Duplicated Code in the main Function/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.13 - Removing Duplicated Code in the main Function/Account.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.13 - Removing Duplicated Code in the main Function/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.13 - Removing Duplicated Code in the main Function/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/HeartRates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/HeartRates.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/HeartRatesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/HeartRatesTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.15 - Target-Heart-Rate Calculator/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.16 - Computerization of Health Records/HealthProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.16 - Computerization of Health Records/HealthProfile.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.16 - Computerization of Health Records/HealthProfileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.16 - Computerization of Health Records/HealthProfileTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.16 - Computerization of Health Records/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.16 - Computerization of Health Records/test.txt -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/ElectricBill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/ElectricBill.h -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/ElectricBillTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/ElectricBillTest.cpp -------------------------------------------------------------------------------- /03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/03 - Introduction to Classes/03.17 - Automating Electric Energy Purchases/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.05 - Untitled/ex_04_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.05 - Untitled/ex_04_05.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.05 - Untitled/test.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 9 3 | 7 4 | 4 5 | 0 -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.08 - Untitled/ex_04_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.08 - Untitled/ex_04_08.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.08 - Untitled/test.txt: -------------------------------------------------------------------------------- 1 | x: 2 2 | y: 4 3 | Power is 16 -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.13 - Fuel Usage/ex_04_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.13 - Fuel Usage/ex_04_13.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.13 - Fuel Usage/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.13 - Fuel Usage/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.14 - Credit Limits/ex_04_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.14 - Credit Limits/ex_04_14.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.14 - Credit Limits/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.14 - Credit Limits/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.17 - Find the Largest/ex_04_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.17 - Find the Largest/ex_04_17.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.17 - Find the Largest/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.17 - Find the Largest/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.18 - Tabular Output/ex_04_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.18 - Tabular Output/ex_04_18.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.18 - Tabular Output/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.18 - Tabular Output/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.20 - Validating User Input/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.20 - Validating User Input/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.26 - Square of Asterisks/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.26 - Square of Asterisks/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.27 - Palindromes/ex_04_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.27 - Palindromes/ex_04_27.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.27 - Palindromes/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.27 - Palindromes/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.30 - Fibonacci Sequence/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.30 - Fibonacci Sequence/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.33 - Sides of a Triangle/test.txt: -------------------------------------------------------------------------------- 1 | Three nonzero values: 2 3.0 4.2 2 | Triangle! -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.34 - Sides of a Right Triangle/test.txt: -------------------------------------------------------------------------------- 1 | Three nonzero integers: 3 5 4 2 | Right triangle! -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.35 - Factorial/ex_04_35.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.35 - Factorial/ex_04_35.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.35 - Factorial/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.35 - Factorial/test.txt -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.40 - Home Building/ex_04_40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.40 - Home Building/ex_04_40.cpp -------------------------------------------------------------------------------- /04 - Algorithm Development and Control Statements. Part I/04.40 - Home Building/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/04 - Algorithm Development and Control Statements. Part I/04.40 - Home Building/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/ex_05_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/ex_05_11.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/test1.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.11 - Find the Smallest Value/test2.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.12 - Product of the Multiples of 3/test.txt: -------------------------------------------------------------------------------- 1 | 9.00657e+20 -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.13 - Factorials/ex_05_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.13 - Factorials/ex_05_13.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.13 - Factorials/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.13 - Factorials/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.15 - Triangle-Printing Program/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.15 - Triangle-Printing Program/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.16 - Bar-Chart Printing Program/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.16 - Bar-Chart Printing Program/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.17 - Calculating Sales/ex_05_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.17 - Calculating Sales/ex_05_17.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.17 - Calculating Sales/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.17 - Calculating Sales/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.18 - What Prints/ex_05_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.18 - What Prints/ex_05_18.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.18 - What Prints/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.18 - What Prints/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.19 - Calculating the Value of Pi/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.19 - Calculating the Value of Pi/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.20 - Pythagorean Triples/ex_05_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.20 - Pythagorean Triples/ex_05_20.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.20 - Pythagorean Triples/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.20 - Pythagorean Triples/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.22 - De Morgans Laws/ex_05_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.22 - De Morgans Laws/ex_05_22.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.22 - De Morgans Laws/test.txt: -------------------------------------------------------------------------------- 1 | 1111 -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.23 - Egg-timer Program/ex_05_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.23 - Egg-timer Program/ex_05_23.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.23 - Egg-timer Program/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.23 - Egg-timer Program/test.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.24 - Modified Egg-timer Program/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.24 - Modified Egg-timer Program/test1.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.24 - Modified Egg-timer Program/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.24 - Modified Egg-timer Program/test2.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.25 - Removing break and continue/test.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 2 | Broke out of loop at count = 5 -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.27 - Replacing continue/ex_05_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.27 - Replacing continue/ex_05_27.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.27 - Replacing continue/test.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 6 7 8 9 10 2 | Used increment to skip printing 5 -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/ex_05_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/ex_05_29.cpp -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/test1.txt -------------------------------------------------------------------------------- /05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/05 - Control Statements Part II. Logical Operators/05.29 - Peter Minuit Problem/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.03 - Untitled/ex_06_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.03 - Untitled/ex_06_03.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.03 - Untitled/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.03 - Untitled/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.10 - Untitled/ex_06_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.10 - Untitled/ex_06_10.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.10 - Untitled/test.txt: -------------------------------------------------------------------------------- 1 | Radius of a sphere: 4.2 2 | Volume is 310.339 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.11 - Untitled/ex_06_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.11 - Untitled/ex_06_11.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.11 - Untitled/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.11 - Untitled/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.12 - Parking Charges/ex_06_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.12 - Parking Charges/ex_06_12.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.12 - Parking Charges/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.12 - Parking Charges/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.13 - Rounding Numbers/ex_06_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.13 - Rounding Numbers/ex_06_13.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.13 - Rounding Numbers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.13 - Rounding Numbers/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.14 - Rounding Numbers/ex_06_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.14 - Rounding Numbers/ex_06_14.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.14 - Rounding Numbers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.14 - Rounding Numbers/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.16 - Random Numbers/ex_06_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.16 - Random Numbers/ex_06_16.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.16 - Random Numbers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.16 - Random Numbers/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.17 - Random Numbers/ex_06_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.17 - Random Numbers/ex_06_17.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.17 - Random Numbers/test1.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 7 3 | 18 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.17 - Random Numbers/test2.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 3 3 | 14 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.18 - Exponentiation/ex_06_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.18 - Exponentiation/ex_06_18.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.18 - Exponentiation/test.txt: -------------------------------------------------------------------------------- 1 | Base and exponent: 3 4 2 | Result is 81 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.19 - Hypotenuse Calculations/ex_06_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.19 - Hypotenuse Calculations/ex_06_19.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.19 - Hypotenuse Calculations/test.txt: -------------------------------------------------------------------------------- 1 | 1: 5 2 | 2: 13 3 | 3: 17 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.20 - Factors/ex_06_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.20 - Factors/ex_06_20.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.20 - Factors/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.20 - Factors/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.21 - Multiple of 3/ex_06_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.21 - Multiple of 3/ex_06_21.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.21 - Multiple of 3/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.21 - Multiple of 3/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/ex_06_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/ex_06_22.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.22 - Rectangle of Asterisks/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/ex_06_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/ex_06_23.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.23 - Rectangle of Any Character/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.24 - Separating Digits/ex_06_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.24 - Separating Digits/ex_06_24.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.24 - Separating Digits/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.24 - Separating Digits/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.24 - Separating Digits/test2.txt: -------------------------------------------------------------------------------- 1 | Number (1 - 32767): 10420 2 | 1 0 4 2 0 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test3.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.25 - Calculating Number of Minutes/test4.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/ex_06_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/ex_06_27.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.27 - Find the Minimum/test3.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.28 - Dudeney Numbers/ex_06_28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.28 - Dudeney Numbers/ex_06_28.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.28 - Dudeney Numbers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.28 - Dudeney Numbers/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.29 - Prime Numbers/ex_06_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.29 - Prime Numbers/ex_06_29.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.29 - Prime Numbers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.29 - Prime Numbers/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.30 - Reverse Digits/ex_06_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.30 - Reverse Digits/ex_06_30.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.30 - Reverse Digits/test1.txt: -------------------------------------------------------------------------------- 1 | Number: 7631 2 | Reversed is 1367 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.30 - Reverse Digits/test2.txt: -------------------------------------------------------------------------------- 1 | Number: 100042 2 | Reversed is 240001 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/ex_06_31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/ex_06_31.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/test2.txt: -------------------------------------------------------------------------------- 1 | Two nonzero numbers: -8 12 2 | GCD is 4 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.31 - Greatest Common Divisor/test3.txt: -------------------------------------------------------------------------------- 1 | Two nonzero numbers: 8 -12 2 | GCD is 4 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.32 - Quality Points for Numeric Grades/test2.txt: -------------------------------------------------------------------------------- 1 | Student's average: 90 2 | Quality point is 4 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.32 - Quality Points for Numeric Grades/test3.txt: -------------------------------------------------------------------------------- 1 | Student's average: 89 2 | Quality point is 3 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.32 - Quality Points for Numeric Grades/test4.txt: -------------------------------------------------------------------------------- 1 | Student's average: 69 2 | Quality point is 1 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.32 - Quality Points for Numeric Grades/test5.txt: -------------------------------------------------------------------------------- 1 | Student's average: 42 2 | Quality point is 0 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.33 - Coin Tossing/ex_06_33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.33 - Coin Tossing/ex_06_33.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.33 - Coin Tossing/test1.txt: -------------------------------------------------------------------------------- 1 | Heads: 49 2 | Tails: 51 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.33 - Coin Tossing/test2.txt: -------------------------------------------------------------------------------- 1 | Heads: 53 2 | Tails: 47 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.34 - Guess-the-Number Game/ex_06_34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.34 - Guess-the-Number Game/ex_06_34.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.34 - Guess-the-Number Game/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.34 - Guess-the-Number Game/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/ex_06_36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/ex_06_36.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/test1.txt: -------------------------------------------------------------------------------- 1 | Base and exponent: 3 4 2 | Result is 81 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/test2.txt: -------------------------------------------------------------------------------- 1 | Base and exponent: 42 3 2 | Result is 74088 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.36 - Recursive Exponentiation/test3.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/ex_06_38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/ex_06_38.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test3.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.38 - Towers of Hanoi/test4.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.40 - Visualizing Recursion/ex_06_40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.40 - Visualizing Recursion/ex_06_40.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.40 - Visualizing Recursion/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.40 - Visualizing Recursion/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.41 - Recursive Greatest Common Divisor/test1.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 18 42 2 | GCD is 6 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.41 - Recursive Greatest Common Divisor/test2.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 3 -3 2 | GCD is 3 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.41 - Recursive Greatest Common Divisor/test3.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 42 0 2 | GCD is 42 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/ex_06_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/ex_06_42.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.42 - Distance Between Points/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.43 - What Does This Program Do/ex_06_43.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.43 - What Does This Program Do/ex_06_43.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.43 - What Does This Program Do/test.txt: -------------------------------------------------------------------------------- 1 | Enter two integers: 6 7 2 | The result is 42 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.44 - Exercise 6.43 Modification/ex_06_44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.44 - Exercise 6.43 Modification/ex_06_44.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.44 - Exercise 6.43 Modification/test.txt: -------------------------------------------------------------------------------- 1 | Enter two integers: 6 -7 2 | The result is -42 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/ex_06_47.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/ex_06_47.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/test1.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.47 - Craps Game Modification/test2.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.48 - Circle Area/ex_06_48.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.48 - Circle Area/ex_06_48.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.48 - Circle Area/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.48 - Circle Area/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.51 - Function Template minimum/ex_06_51.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.51 - Function Template minimum/ex_06_51.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.51 - Function Template minimum/test.txt: -------------------------------------------------------------------------------- 1 | -1 2 | @ 3 | 4.02 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.52 - Function Template maximum/ex_06_52.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.52 - Function Template maximum/ex_06_52.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.52 - Function Template maximum/test.txt: -------------------------------------------------------------------------------- 1 | 1 2 | a 3 | 4.2 -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.57 - Computer-Assisted Instruction/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.57 - Computer-Assisted Instruction/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.58 - CAI. Reducing Student Fatigue/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.58 - CAI. Reducing Student Fatigue/test.txt -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.60 - CAI. Difficulty Levels/ex_06_60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.60 - CAI. Difficulty Levels/ex_06_60.cpp -------------------------------------------------------------------------------- /06 - Functions and an Introduction to Recursion/06.60 - CAI. Difficulty Levels/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/06 - Functions and an Introduction to Recursion/06.60 - CAI. Difficulty Levels/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.10 - Server Income Ranges/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.10 - Server Income Ranges/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/ex_07_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/ex_07_16.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/test1.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.16 - Dice Rolling/test2.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.17 - What Does This Program Do/test.txt: -------------------------------------------------------------------------------- 1 | Result is 55 -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.21 - Workshop Summary/ex_07_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.21 - Workshop Summary/ex_07_21.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.21 - Workshop Summary/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.21 - Workshop Summary/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/ex_07_22_b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/ex_07_22_b.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/ex_07_22_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/ex_07_22_c.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/test_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/test_b.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/test_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.22 - Knight-s Tour/test_c.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.24 - Eight Queens/ex_07_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.24 - Eight Queens/ex_07_24.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.24 - Eight Queens/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.24 - Eight Queens/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.29 - Eight Queens/ex_07_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.29 - Eight Queens/ex_07_29.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.29 - Eight Queens/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.29 - Eight Queens/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.30 - Print an array/ex_07_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.30 - Print an array/ex_07_30.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.30 - Print an array/test.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.31 - Print a String Backward/test.txt: -------------------------------------------------------------------------------- 1 | !dlrow ,olleH -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.32 - Find the Maximum Value in an array/test.txt: -------------------------------------------------------------------------------- 1 | Largest number is 2 -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.33 - Maze Traversal/ex_07_33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.33 - Maze Traversal/ex_07_33.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.33 - Maze Traversal/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.33 - Maze Traversal/test.txt -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.35 - Polling/ex_07_35.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.35 - Polling/ex_07_35.cpp -------------------------------------------------------------------------------- /07 - Class Templates array and vector. Catching Exceptions/07.35 - Polling/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/07 - Class Templates array and vector. Catching Exceptions/07.35 - Polling/test.txt -------------------------------------------------------------------------------- /08 - Pointers/08.08 - Write Cpp Statements/ex_08_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.08 - Write Cpp Statements/ex_08_08.cpp -------------------------------------------------------------------------------- /08 - Pointers/08.08 - Write Cpp Statements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.08 - Write Cpp Statements/test.txt -------------------------------------------------------------------------------- /08 - Pointers/08.10 - Function Headers and Prototypes/ex_08_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.10 - Function Headers and Prototypes/ex_08_10.cpp -------------------------------------------------------------------------------- /08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/ex_08_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/ex_08_12.cpp -------------------------------------------------------------------------------- /08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_1.txt -------------------------------------------------------------------------------- /08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_2.txt -------------------------------------------------------------------------------- /08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.12 - Simulation. The Tortoise and the Hare/test_3.txt -------------------------------------------------------------------------------- /08 - Pointers/08.15 - Machine-Language Programming/ex_08_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.15 - Machine-Language Programming/ex_08_15.cpp -------------------------------------------------------------------------------- /08 - Pointers/08.15 - Machine-Language Programming/test_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.15 - Machine-Language Programming/test_a.txt -------------------------------------------------------------------------------- /08 - Pointers/08.15 - Machine-Language Programming/test_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.15 - Machine-Language Programming/test_b.txt -------------------------------------------------------------------------------- /08 - Pointers/08.15 - Machine-Language Programming/test_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.15 - Machine-Language Programming/test_c.txt -------------------------------------------------------------------------------- /08 - Pointers/08.16 - Computer Simulator/ex_08_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.16 - Computer Simulator/ex_08_16.cpp -------------------------------------------------------------------------------- /08 - Pointers/08.16 - Computer Simulator/test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.16 - Computer Simulator/test_1.txt -------------------------------------------------------------------------------- /08 - Pointers/08.16 - Computer Simulator/test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/08 - Pointers/08.16 - Computer Simulator/test_2.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/Time.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/Time.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/ex_09_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/ex_09_04.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.04 - Enhancing Class Time/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/Quadratic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/Quadratic.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/Quadratic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/Quadratic.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/ex_09_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/ex_09_05.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.05 - Quadratic Equations Class/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.06 - Rational Class/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.06 - Rational Class/Rational.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.06 - Rational Class/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.06 - Rational Class/Rational.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.06 - Rational Class/ex_09_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.06 - Rational Class/ex_09_06.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.06 - Rational Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.06 - Rational Class/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.07 - Name Class/Name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.07 - Name Class/Name.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.07 - Name Class/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.07 - Name Class/Name.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.07 - Name Class/ex_09_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.07 - Name Class/ex_09_07.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.07 - Name Class/test.txt: -------------------------------------------------------------------------------- 1 | Mr. Smith John W. -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.08 - Student Class/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.08 - Student Class/Student.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.08 - Student Class/Student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.08 - Student Class/Student.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.08 - Student Class/ex_09_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.08 - Student Class/ex_09_08.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Date.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Date.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Name.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Name.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Student.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/Student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/Student.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/ex_09_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.09 - Improving Class Student/ex_09_09.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.09 - Improving Class Student/test.txt: -------------------------------------------------------------------------------- 1 | Mr. John W. Smith 2 | 1/23/2002 -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Date.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Date.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Name.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Name.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Student.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/Student.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/ex_09_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/ex_09_10.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.10 - Returning Error Indicators/test.txt: -------------------------------------------------------------------------------- 1 | Exception: incorrect registration number -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.11 - Rectangle Class/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.11 - Rectangle Class/Rectangle.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.11 - Rectangle Class/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.11 - Rectangle Class/Rectangle.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.11 - Rectangle Class/ex_09_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.11 - Rectangle Class/ex_09_11.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.11 - Rectangle Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.11 - Rectangle Class/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/Rectangle.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/Rectangle.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/ex_09_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/ex_09_12.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test1.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test2.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.12 - Enhancing Class Rectangle/test3.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/Rectangle.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/Rectangle.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/ex_09_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/ex_09_13.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test1.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test2.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test3.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.13 - Enhancing Class Rectangle/test4.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/HugeInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/HugeInteger.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/HugeInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/HugeInteger.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/ex_09_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/ex_09_14.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test1.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test2.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.14 - HugeInteger Class/test3.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/TicTacToe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/TicTacToe.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/TicTacToe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/TicTacToe.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/ex_09_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/ex_09_15.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test1.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test2.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.15 - TicTacToe Class/test3.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.19 - Date Class Modification/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.19 - Date Class Modification/Date.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.19 - Date Class Modification/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.19 - Date Class Modification/Date.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.19 - Date Class Modification/ex_09_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.19 - Date Class Modification/ex_09_19.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.19 - Date Class Modification/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.19 - Date Class Modification/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/VicobaAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/VicobaAccount.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/VicobaAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/VicobaAccount.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/ex_09_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/ex_09_20.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.20 - VicobaAccount Class/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.21 - IntegerSet Class/IntegerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.21 - IntegerSet Class/IntegerSet.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.21 - IntegerSet Class/IntegerSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.21 - IntegerSet Class/IntegerSet.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.21 - IntegerSet Class/ex_09_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.21 - IntegerSet Class/ex_09_21.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.21 - IntegerSet Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.21 - IntegerSet Class/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.22 - Time Class Modification/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.22 - Time Class Modification/Time.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.22 - Time Class Modification/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.22 - Time Class Modification/Time.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.22 - Time Class Modification/ex_09_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.22 - Time Class Modification/ex_09_22.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.22 - Time Class Modification/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.22 - Time Class Modification/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/Card.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/Card.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/DeckOfCards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/DeckOfCards.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/DeckOfCards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/DeckOfCards.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/ex_09_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/ex_09_23.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.23 - Card Shuffling and Dealing/test.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Card.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Card.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/DeckOfCards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/DeckOfCards.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/DeckOfCards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/DeckOfCards.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Hand.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Hand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/Hand.h -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/ex_09_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/ex_09_24.cpp -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/test1.txt -------------------------------------------------------------------------------- /09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/09 - Classes. A Deeper Look/09.24 - Card Shuffling and Dealing/test2.txt -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.07 - Overloading the Parentheses Operator/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.07 - Overloading the Parentheses Operator/test.txt -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/MotorVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/MotorVehicle.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/MotorVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/MotorVehicle.h -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/ex_10_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/ex_10_08.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.08 - Enhanced MotorVehicle Class/test.txt -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/Quadratic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/Quadratic.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/Quadratic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/Quadratic.h -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/ex_10_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/ex_10_10.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.10 - Enhanced Quadratic Class/test.txt -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/Polynomial.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/Polynomial.h -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/Term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/Term.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/Term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/Term.h -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/ex_10_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/ex_10_11.cpp -------------------------------------------------------------------------------- /10 - Operator Overloading. Class string/10.11 - Polynomial Class/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/10 - Operator Overloading. Class string/10.11 - Polynomial Class/test.txt -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/Package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/Package.cpp -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/Package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/Package.h -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/ex_11_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/ex_11_09.cpp -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.09 - Package Inheritance Hierarchy/test.txt -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/Account.cpp -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/Account.h -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/ex_11_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/ex_11_10.cpp -------------------------------------------------------------------------------- /11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/11 - Object-Oriented Programming. Inheritance/11.10 - Account Inheritance Hierarchy/test.txt -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Date.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Date.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Employee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Employee.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/Employee.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/ex_12_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/ex_12_11.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.11 - Payroll-System Modification/test.txt -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/Package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/Package.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/Package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/Package.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.12 - Package Inheritance Hierarchy/test.txt -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/Account.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/Account.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/ex_12_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/ex_12_13.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.13 - Polymorphic Banking Program/test.txt -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Date.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Date.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Employee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Employee.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/Employee.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/PieceWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/PieceWorker.h -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/ex_12_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/ex_12_14.cpp -------------------------------------------------------------------------------- /12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/12 - Object-Oriented Programming. Polymorphism/12.14 - Payroll-System Modification/test.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.06 - Write Cpp Statements/ex_13_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.06 - Write Cpp Statements/ex_13_06.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.11 - Length of a String/ex_13_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.11 - Length of a String/ex_13_11.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.11 - Length of a String/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.11 - Length of a String/test.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.12 - Displaying numbers in different bases/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.12 - Displaying numbers in different bases/test.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.13 - Dealing with extra input characters/ex_13_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.13 - Dealing with extra input characters/ex_13_13.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.13 - Dealing with extra input characters/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.13 - Dealing with extra input characters/test.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/PhoneNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/PhoneNumber.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/PhoneNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/PhoneNumber.h -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/ex_13_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/ex_13_14.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/test1.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.14 - Reading Phone Numbers/test2.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/Point.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/Point.h -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/ex_13_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/ex_13_15.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/test1.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.15 - Point Class/test2.txt: -------------------------------------------------------------------------------- 1 | Coordinates: -1 42 2 | (-1, 42) -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/Complex.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/Complex.h -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/ex_13_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/ex_13_16.cpp -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/test1.txt -------------------------------------------------------------------------------- /13 - Stream Input-Output. A Deeper Look/13.16 - Complex Class/test2.txt: -------------------------------------------------------------------------------- 1 | Complex number (e.g. 3 + 8i): a+bi 2 | ERROR! -------------------------------------------------------------------------------- /14 - File Processing/14.06 - File Matching/ex_14_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.06 - File Matching/ex_14_06.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.06 - File Matching/newmast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.06 - File Matching/newmast.dat -------------------------------------------------------------------------------- /14 - File Processing/14.06 - File Matching/oldmast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.06 - File Matching/oldmast.dat -------------------------------------------------------------------------------- /14 - File Processing/14.06 - File Matching/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.06 - File Matching/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.06 - File Matching/trans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.06 - File Matching/trans.dat -------------------------------------------------------------------------------- /14 - File Processing/14.07 - File Matching Test Data/ex_14_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.07 - File Matching Test Data/ex_14_07.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.07 - File Matching Test Data/oldmast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.07 - File Matching Test Data/oldmast.dat -------------------------------------------------------------------------------- /14 - File Processing/14.07 - File Matching Test Data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.07 - File Matching Test Data/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.07 - File Matching Test Data/trans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.07 - File Matching Test Data/trans.dat -------------------------------------------------------------------------------- /14 - File Processing/14.08 - Efficiency of binary files/bin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.08 - Efficiency of binary files/bin.dat -------------------------------------------------------------------------------- /14 - File Processing/14.08 - Efficiency of binary files/ex_14_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.08 - Efficiency of binary files/ex_14_08.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.08 - Efficiency of binary files/test.txt: -------------------------------------------------------------------------------- 1 | Text: 5015 ms 2 | Binary: 347 ms -------------------------------------------------------------------------------- /14 - File Processing/14.08 - Efficiency of binary files/txt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.08 - Efficiency of binary files/txt.dat -------------------------------------------------------------------------------- /14 - File Processing/14.09 - File-Matching Enhancement/ex_14_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.09 - File-Matching Enhancement/ex_14_09.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.09 - File-Matching Enhancement/newmast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.09 - File-Matching Enhancement/newmast.dat -------------------------------------------------------------------------------- /14 - File Processing/14.09 - File-Matching Enhancement/oldmast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.09 - File-Matching Enhancement/oldmast.dat -------------------------------------------------------------------------------- /14 - File Processing/14.09 - File-Matching Enhancement/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.09 - File-Matching Enhancement/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.09 - File-Matching Enhancement/trans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.09 - File-Matching Enhancement/trans.dat -------------------------------------------------------------------------------- /14 - File Processing/14.10 - A series of statements/ex_14_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.10 - A series of statements/ex_14_10.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.10 - A series of statements/nameage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14 - File Processing/14.11 - Hardware Inventory/Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.11 - Hardware Inventory/Tool.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.11 - Hardware Inventory/Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.11 - Hardware Inventory/Tool.h -------------------------------------------------------------------------------- /14 - File Processing/14.11 - Hardware Inventory/ex_14_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.11 - Hardware Inventory/ex_14_11.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.11 - Hardware Inventory/hardware.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.11 - Hardware Inventory/hardware.dat -------------------------------------------------------------------------------- /14 - File Processing/14.11 - Hardware Inventory/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.11 - Hardware Inventory/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.12 - Telephone-Number Word Generator/6862377.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.12 - Telephone-Number Word Generator/6862377.txt -------------------------------------------------------------------------------- /14 - File Processing/14.12 - Telephone-Number Word Generator/ex_14_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.12 - Telephone-Number Word Generator/ex_14_12.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.12 - Telephone-Number Word Generator/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.12 - Telephone-Number Word Generator/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.13 - A simple dictionary/Belarusian.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.13 - A simple dictionary/Belarusian.dat -------------------------------------------------------------------------------- /14 - File Processing/14.13 - A simple dictionary/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.13 - A simple dictionary/Entry.h -------------------------------------------------------------------------------- /14 - File Processing/14.13 - A simple dictionary/ex_14_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.13 - A simple dictionary/ex_14_13.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.13 - A simple dictionary/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.13 - A simple dictionary/test.txt -------------------------------------------------------------------------------- /14 - File Processing/14.14 - Phishing Scanner/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.14 - Phishing Scanner/email.txt -------------------------------------------------------------------------------- /14 - File Processing/14.14 - Phishing Scanner/ex_14_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.14 - Phishing Scanner/ex_14_14.cpp -------------------------------------------------------------------------------- /14 - File Processing/14.14 - Phishing Scanner/phishing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.14 - Phishing Scanner/phishing.txt -------------------------------------------------------------------------------- /14 - File Processing/14.14 - Phishing Scanner/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/14 - File Processing/14.14 - Phishing Scanner/test.txt -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.22 - Palindromes/ex_15_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/15 - Standard Library Containers and Iterators/15.22 - Palindromes/ex_15_22.cpp -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.22 - Palindromes/test.txt: -------------------------------------------------------------------------------- 1 | true 2 | false -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.24 - Sieve of Eratosthenes/ex_15_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/15 - Standard Library Containers and Iterators/15.24 - Sieve of Eratosthenes/ex_15_24.cpp -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.24 - Sieve of Eratosthenes/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/15 - Standard Library Containers and Iterators/15.24 - Sieve of Eratosthenes/test.txt -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.25 - Prime Factors/ex_15_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/15 - Standard Library Containers and Iterators/15.25 - Prime Factors/ex_15_25.cpp -------------------------------------------------------------------------------- /15 - Standard Library Containers and Iterators/15.25 - Prime Factors/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/15 - Standard Library Containers and Iterators/15.25 - Prime Factors/test.txt -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.08 - Duplicate Elimination/ex_16_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.08 - Duplicate Elimination/ex_16_08.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.08 - Duplicate Elimination/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.08 - Duplicate Elimination/test.txt -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.09 - Duplicate Elimination/ex_16_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.09 - Duplicate Elimination/ex_16_09.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.09 - Duplicate Elimination/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.09 - Duplicate Elimination/test.txt -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.10 - Reading Data from a File/ex_16_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.10 - Reading Data from a File/ex_16_10.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.10 - Reading Data from a File/integers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.10 - Reading Data from a File/integers.txt -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.10 - Reading Data from a File/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.10 - Reading Data from a File/test.txt -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.11 - Merging Ordered Lists/ex_16_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.11 - Merging Ordered Lists/ex_16_11.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.11 - Merging Ordered Lists/test.txt: -------------------------------------------------------------------------------- 1 | Alpha Bravo Charlie Delta Echo Foxtrot Golf -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.12 - Palindrome Tester/ex_16_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.12 - Palindrome Tester/ex_16_12.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.12 - Palindrome Tester/test.txt: -------------------------------------------------------------------------------- 1 | able was i ere i saw elba 2 | is a palindrome -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.13 - Enhanced Palindrome Tester/ex_16_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/16 - Standard Library Algorithms/16.13 - Enhanced Palindrome Tester/ex_16_13.cpp -------------------------------------------------------------------------------- /16 - Standard Library Algorithms/16.13 - Enhanced Palindrome Tester/test.txt: -------------------------------------------------------------------------------- 1 | Madam, I'm Adam! 2 | is a palindrome -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.19 - Exception Handling and Program Control/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.19 - Exception Handling and Program Control/test.txt -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.21 - Throwing Exceptions from a catch/ex_17_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.21 - Throwing Exceptions from a catch/ex_17_21.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.21 - Throwing Exceptions from a catch/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.21 - Throwing Exceptions from a catch/test.txt -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.22 - Catching Derived-Class Exceptions/ex_17_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.22 - Catching Derived-Class Exceptions/ex_17_22.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.22 - Catching Derived-Class Exceptions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.22 - Catching Derived-Class Exceptions/test.txt -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.23 - Throwing the Result of a Conditional Expression/test.txt: -------------------------------------------------------------------------------- 1 | double -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.24 - Local-Variable Destructors/ex_17_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.24 - Local-Variable Destructors/ex_17_24.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.24 - Local-Variable Destructors/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.24 - Local-Variable Destructors/test.txt -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.25 - Member-Object Destructors/ex_17_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.25 - Member-Object Destructors/ex_17_25.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.25 - Member-Object Destructors/test.txt: -------------------------------------------------------------------------------- 1 | ~C 2 | ~B 3 | ~A -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.27 - Order of Exception Handlers/ex_17_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.27 - Order of Exception Handlers/ex_17_27.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.27 - Order of Exception Handlers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.27 - Order of Exception Handlers/test.txt -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.28 - Constructors Throwing Exceptions/ex_17_28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.28 - Constructors Throwing Exceptions/ex_17_28.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.28 - Constructors Throwing Exceptions/test.txt: -------------------------------------------------------------------------------- 1 | Constructor failure -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.29 - Rethrowing Exceptions/ex_17_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.29 - Rethrowing Exceptions/ex_17_29.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.29 - Rethrowing Exceptions/test.txt: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.30 - Uncaught Exceptions/ex_17_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.30 - Uncaught Exceptions/ex_17_30.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.30 - Uncaught Exceptions/test.txt: -------------------------------------------------------------------------------- 1 | float handler -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.31 - Stack Unwinding/ex_17_31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/17 - Exception Handling. A Deeper Look/17.31 - Stack Unwinding/ex_17_31.cpp -------------------------------------------------------------------------------- /17 - Exception Handling. A Deeper Look/17.31 - Stack Unwinding/test.txt: -------------------------------------------------------------------------------- 1 | Caught: 42 -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.03 - Operator Overloads in Templates/ex_18_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.03 - Operator Overloads in Templates/ex_18_03.cpp -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.03 - Operator Overloads in Templates/test.txt: -------------------------------------------------------------------------------- 1 | 01010 -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.04 - Array Class Template/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.04 - Array Class Template/Array.h -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.04 - Array Class Template/ex_18_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.04 - Array Class Template/ex_18_04.cpp -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.04 - Array Class Template/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.04 - Array Class Template/test.txt -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/GradeBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/GradeBook.h -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/ex_18_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/ex_18_14.cpp -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/test1.txt -------------------------------------------------------------------------------- /18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/18 - Introduction to Custom Templates/18.14 - GradeBook Class Template/test2.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/List.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/ex_19_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/ex_19_06.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.06 - Concatenating Lists/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.07 - Splitting a list/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.07 - Splitting a list/List.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.07 - Splitting a list/ex_19_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.07 - Splitting a list/ex_19_07.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.07 - Splitting a list/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.07 - Splitting a list/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/Stack.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/ex_19_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/ex_19_12.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.12 - Infix-to-Postfix Conversion/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.13 - Postfix Evaluation/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.13 - Postfix Evaluation/Stack.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.13 - Postfix Evaluation/ex_19_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.13 - Postfix Evaluation/ex_19_13.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.13 - Postfix Evaluation/test.txt: -------------------------------------------------------------------------------- 1 | Postfix expression: 6 2 + 5 * 8 4 / - 2 | Calculated value: 38 -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/Queue.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/ex_19_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/ex_19_15.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.15 - Supermarket Simulation/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/ex_19_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/ex_19_16.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.16 - Constructing a Binary Tree/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/ex_19_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/ex_19_17.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.17 - Binary Tree of Strings/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/ex_19_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/ex_19_19.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.19 - Depth of a Binary Tree/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/List.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/ex_19_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/ex_19_20.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.20 - Recursively Print a List Backward/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/ForwardList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/ForwardList.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/ex_19_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/ex_19_21.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.21 - Recursively Search a List/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/ex_19_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/ex_19_22.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.22 - Binary Tree Search/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/Queue.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/ex_19_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/ex_19_23.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.23 - Level-Order Binary Tree Traversal/test.txt: -------------------------------------------------------------------------------- 1 | 5-char word: robot 2 | 3 | Duplicate: o 4 | Level-order traversal: r o t b -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.24 - Printing Trees/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.24 - Printing Trees/Tree.h -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.24 - Printing Trees/ex_19_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.24 - Printing Trees/ex_19_24.cpp -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.24 - Printing Trees/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.24 - Printing Trees/test.txt -------------------------------------------------------------------------------- /19 - Custom Templatized Data Structures/19.26 - List and Queues without Tail Pointers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/19 - Custom Templatized Data Structures/19.26 - List and Queues without Tail Pointers/test.txt -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.05 - Performance of Linear Search/ex_20_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.05 - Performance of Linear Search/ex_20_05.cpp -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.05 - Performance of Linear Search/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.05 - Performance of Linear Search/test.txt -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.06 - Enhanced Bubble Sort/ex_20_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.06 - Enhanced Bubble Sort/ex_20_06.cpp -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.06 - Enhanced Bubble Sort/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.06 - Enhanced Bubble Sort/test.txt -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.07 - Bucket Sort/ex_20_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.07 - Bucket Sort/ex_20_07.cpp -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.07 - Bucket Sort/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.07 - Bucket Sort/test.txt -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.08 - Comparing The Performance of Sorting Algorithms/array.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.08 - Comparing The Performance of Sorting Algorithms/array.dat -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.08 - Comparing The Performance of Sorting Algorithms/ex_20_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.08 - Comparing The Performance of Sorting Algorithms/ex_20_08.cpp -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.08 - Comparing The Performance of Sorting Algorithms/test.txt: -------------------------------------------------------------------------------- 1 | Bubble: 5291 2 | Bucket: 107 -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.10 - Quicksort/ex_20_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.10 - Quicksort/ex_20_10.cpp -------------------------------------------------------------------------------- /20 - Searching and Sorting/20.10 - Quicksort/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/20 - Searching and Sorting/20.10 - Quicksort/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.07 - Simple Encryption/ex_21_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.07 - Simple Encryption/ex_21_07.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.07 - Simple Encryption/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.07 - Simple Encryption/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.08 - Converting a string to upper case/ex_21_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.08 - Converting a string to upper case/ex_21_08.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.08 - Converting a string to upper case/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.08 - Converting a string to upper case/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.09 - Converting a string to title case/ex_21_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.09 - Converting a string to title case/ex_21_09.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.09 - Converting a string to title case/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.09 - Converting a string to title case/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.10 - String Concatenation/ex_21_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.10 - String Concatenation/ex_21_10.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.10 - String Concatenation/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.10 - String Concatenation/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.11 - Sentence letter statistics/ex_21_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.11 - Sentence letter statistics/ex_21_11.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.11 - Sentence letter statistics/test.txt: -------------------------------------------------------------------------------- 1 | Sentence: No pressure, no diamonds! 2 | Character: n 3 | Found 3 time(s) -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.12 - File letter statistics/ex_21_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.12 - File letter statistics/ex_21_12.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.12 - File letter statistics/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.12 - File letter statistics/file.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.12 - File letter statistics/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.12 - File letter statistics/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.13 - Alphabetizing Animal Names/ex_21_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.13 - Alphabetizing Animal Names/ex_21_13.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.13 - Alphabetizing Animal Names/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.13 - Alphabetizing Animal Names/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.16 - Counting Palindromes/ex_21_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.16 - Counting Palindromes/ex_21_16.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.16 - Counting Palindromes/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.16 - Counting Palindromes/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.17 - Counting Vowels/ex_21_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.17 - Counting Vowels/ex_21_17.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.17 - Counting Vowels/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.17 - Counting Vowels/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.18 - String Insertion/ex_21_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.18 - String Insertion/ex_21_18.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.18 - String Insertion/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.18 - String Insertion/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.19 - Erasing Characters from a string/ex_21_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.19 - Erasing Characters from a string/ex_21_19.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.19 - Erasing Characters from a string/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.19 - Erasing Characters from a string/test.txt -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.20 - Reversing a string with Iterators/ex_21_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.20 - Reversing a string with Iterators/ex_21_20.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.20 - Reversing a string with Iterators/test.txt: -------------------------------------------------------------------------------- 1 | String: 12345 2 | 54321 -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.21 - Recursively Reversing a string with Iterators/test.txt: -------------------------------------------------------------------------------- 1 | String: 12345 2 | 54321 -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.23 - Letter Pyramid/ex_21_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.23 - Letter Pyramid/ex_21_23.cpp -------------------------------------------------------------------------------- /21 - Class string. A Deeper Look/21.23 - Letter Pyramid/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/21 - Class string. A Deeper Look/21.23 - Letter Pyramid/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/DeckOfCards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/DeckOfCards.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/DeckOfCards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/DeckOfCards.h -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/ex_22_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/ex_22_05.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.05 - Card Shuffling and Dealing/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.11 - Setting bits in an integer/ex_22_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.11 - Setting bits in an integer/ex_22_11.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.11 - Setting bits in an integer/test.txt: -------------------------------------------------------------------------------- 1 | Unsigned number: 11 2 | Bit 2 was set: 15 -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.14 - Percentage of letters/ex_22_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.14 - Percentage of letters/ex_22_14.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.14 - Percentage of letters/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.14 - Percentage of letters/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.15 - Converting Strings to Integers/ex_22_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.15 - Converting Strings to Integers/ex_22_15.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.15 - Converting Strings to Integers/test.txt: -------------------------------------------------------------------------------- 1 | Command-line arguments: 42 0 -1 365 2 | Total: 406 -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.16 - Converting Strings to Floating-Point Numbers/test.txt: -------------------------------------------------------------------------------- 1 | Command-line arguments: 3.14159 0 -1.00 2.718 2 | Total: 4.85959 -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.17 - Searching for Substrings/ex_22_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.17 - Searching for Substrings/ex_22_17.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.17 - Searching for Substrings/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.17 - Searching for Substrings/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.18 - Searching for Substrings/ex_22_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.18 - Searching for Substrings/ex_22_18.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.18 - Searching for Substrings/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.18 - Searching for Substrings/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.19 - Searching for Characters/ex_22_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.19 - Searching for Characters/ex_22_19.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.19 - Searching for Characters/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.19 - Searching for Characters/file.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.19 - Searching for Characters/test.txt: -------------------------------------------------------------------------------- 1 | Filename: file.txt 2 | Character: i 3 | Occurences: 42 4 | -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.20 - Searching for Characters/ex_22_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.20 - Searching for Characters/ex_22_20.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.20 - Searching for Characters/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.20 - Searching for Characters/file.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.20 - Searching for Characters/test.txt: -------------------------------------------------------------------------------- 1 | Filename: file.txt 2 | Substring: you 3 | Occurences: 3 -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.25 - Character Handling Functions/ex_22_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.25 - Character Handling Functions/ex_22_25.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.25 - Character Handling Functions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.25 - Character Handling Functions/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.26 - String Conversion Functions/ex_22_26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.26 - String Conversion Functions/ex_22_26.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.26 - String Conversion Functions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.26 - String Conversion Functions/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.27 - String Searching Functions/ex_22_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.27 - String Searching Functions/ex_22_27.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.27 - String Searching Functions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.27 - String Searching Functions/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.28 - Memory Handling Functions/ex_22_28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.28 - Memory Handling Functions/ex_22_28.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.28 - Memory Handling Functions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.28 - Memory Handling Functions/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.30 - Comparing Strings/ex_22_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.30 - Comparing Strings/ex_22_30.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.30 - Comparing Strings/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.30 - Comparing Strings/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.31 - Comparing Strings/ex_22_31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.31 - Comparing Strings/ex_22_31.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.31 - Comparing Strings/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.31 - Comparing Strings/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.32 - Randomly Creating Sentences/ex_22_32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.32 - Randomly Creating Sentences/ex_22_32.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.32 - Randomly Creating Sentences/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.32 - Randomly Creating Sentences/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.34 - Pig Latin/ex_22_34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.34 - Pig Latin/ex_22_34.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.34 - Pig Latin/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.34 - Pig Latin/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.35 - General Purpose Token Generator/test.txt: -------------------------------------------------------------------------------- 1 | Square 2 | box 3 | round 4 | pizza 5 | triangle 6 | slices -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.36 - Tokenizing and Reversing a Sentence/test.txt: -------------------------------------------------------------------------------- 1 | slices 2 | triangle 3 | pizza 4 | round 5 | box 6 | Square -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.39 - String Comparison Functions/ex_22_39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.39 - String Comparison Functions/ex_22_39.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.39 - String Comparison Functions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.39 - String Comparison Functions/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.40 - String Length Function/ex_22_40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.40 - String Length Function/ex_22_40.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.40 - String Length Function/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.40 - String Length Function/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.41 - Text Analysis/ex_22_41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.41 - Text Analysis/ex_22_41.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.41 - Text Analysis/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.41 - Text Analysis/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.42 - Word Processing/ex_22_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.42 - Word Processing/ex_22_42.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.42 - Word Processing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.42 - Word Processing/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.44 - Check Protection/ex_22_44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.44 - Check Protection/ex_22_44.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.44 - Check Protection/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.44 - Check Protection/test.txt -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.46 - Morse Code/ex_22_46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.46 - Morse Code/ex_22_46.cpp -------------------------------------------------------------------------------- /22 - Bits, Characters, C Strings and structs/22.46 - Morse Code/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/22 - Bits, Characters, C Strings and structs/22.46 - Morse Code/test.txt -------------------------------------------------------------------------------- /26 - ATM Case Study/ATM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/ATM.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/ATM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/ATM.h -------------------------------------------------------------------------------- /26 - ATM Case Study/ATMCaseStudy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/ATMCaseStudy.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Account.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Account.h -------------------------------------------------------------------------------- /26 - ATM Case Study/BalanceInquiry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/BalanceInquiry.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/BalanceInquiry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/BalanceInquiry.h -------------------------------------------------------------------------------- /26 - ATM Case Study/BankDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/BankDatabase.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/BankDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/BankDatabase.h -------------------------------------------------------------------------------- /26 - ATM Case Study/CashDispenser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/CashDispenser.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/CashDispenser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/CashDispenser.h -------------------------------------------------------------------------------- /26 - ATM Case Study/Deposit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Deposit.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Deposit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Deposit.h -------------------------------------------------------------------------------- /26 - ATM Case Study/DepositSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/DepositSlot.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/DepositSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/DepositSlot.h -------------------------------------------------------------------------------- /26 - ATM Case Study/Keypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Keypad.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Keypad.h -------------------------------------------------------------------------------- /26 - ATM Case Study/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Screen.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Screen.h -------------------------------------------------------------------------------- /26 - ATM Case Study/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Transaction.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Transaction.h -------------------------------------------------------------------------------- /26 - ATM Case Study/Withdrawal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Withdrawal.cpp -------------------------------------------------------------------------------- /26 - ATM Case Study/Withdrawal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/26 - ATM Case Study/Withdrawal.h -------------------------------------------------------------------------------- /E - Preprocessor/E04/ex_E_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E04/ex_E_04.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E04/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E04/test.txt -------------------------------------------------------------------------------- /E - Preprocessor/E05/ex_E_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E05/ex_E_05.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E05/test.txt: -------------------------------------------------------------------------------- 1 | The sum of 42 and 69 is 111 -------------------------------------------------------------------------------- /E - Preprocessor/E06/ex_E_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E06/ex_E_06.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E06/test.txt: -------------------------------------------------------------------------------- 1 | Two numbers: 42 -1 2 | Smaller is -1 -------------------------------------------------------------------------------- /E - Preprocessor/E07/ex_E_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E07/ex_E_07.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E07/test.txt: -------------------------------------------------------------------------------- 1 | Three numbers: 42 -1 1024 2 | Smaller is -1 -------------------------------------------------------------------------------- /E - Preprocessor/E08/ex_E_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E08/ex_E_08.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E08/test.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum dolor sit amet -------------------------------------------------------------------------------- /E - Preprocessor/E09/ex_E_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E09/ex_E_09.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E09/test.txt: -------------------------------------------------------------------------------- 1 | 42 -1 1024 0 365 -------------------------------------------------------------------------------- /E - Preprocessor/E10/ex_E_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E10/ex_E_10.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E10/test.txt: -------------------------------------------------------------------------------- 1 | 406 -------------------------------------------------------------------------------- /E - Preprocessor/E11/ex_E_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E11/ex_E_11.cpp -------------------------------------------------------------------------------- /E - Preprocessor/E11/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/E - Preprocessor/E11/test.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.02/ex_F_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.02/ex_F_02.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.02/test.txt: -------------------------------------------------------------------------------- 1 | -42 2 | 420 3 | 901943131740 4 | 0 -------------------------------------------------------------------------------- /F - C Legacy Code/F.03/ex_F_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.03/ex_F_03.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.03/test.txt: -------------------------------------------------------------------------------- 1 | Command-line arguments: 42 Robot $&#% -------------------------------------------------------------------------------- /F - C Legacy Code/F.04/ex_F_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.04/ex_F_04.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.04/test -a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.04/test -a.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.04/test -d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.04/test -d.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.05/ex_F_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.05/ex_F_05.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.05/test.txt: -------------------------------------------------------------------------------- 1 | SIGINT 2 | SIGABRT -------------------------------------------------------------------------------- /F - C Legacy Code/F.06/ex_F_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.06/ex_F_06.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.06/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.06/test.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.07/ex_F_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.07/ex_F_07.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.07/input.txt: -------------------------------------------------------------------------------- 1 | 12345 -------------------------------------------------------------------------------- /F - C Legacy Code/F.07/output.txt: -------------------------------------------------------------------------------- 1 | 54321 -------------------------------------------------------------------------------- /F - C Legacy Code/F.08/ex_F_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.08/ex_F_08.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.08/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.08/test.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.10/ex_F_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.10/ex_F_10.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.10/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.10/test.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.11/ex_F_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.11/ex_F_11.cpp -------------------------------------------------------------------------------- /F - C Legacy Code/F.11/test g++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.11/test g++.txt -------------------------------------------------------------------------------- /F - C Legacy Code/F.11/test msvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRobot42/Deitels-Cpp-10e/HEAD/F - C Legacy Code/F.11/test msvc.txt --------------------------------------------------------------------------------