You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository consists a variety of c++ examples from C++ How to program by deitel 10ed.
4
+
5
+
## Hello world
6
+
- This a starter hello world application.
7
+
8
+
## Calc
9
+
- A simple c++ calculator.
10
+
11
+
## Classes
12
+
This folder defines a CPP starter for Object oriented programming.
13
+
- It has a header file *Account.h* that has a class *Account*.
14
+
15
+
## Control flow
16
+
- In this folder you will find a header file *student.h* with a function *getLetterGrade* that uses an if statement and returns a letter grade for each mark.
17
+
18
+
## CounterControlled
19
+
- In this folder under main you will find an example of a while loop.
20
+
21
+
## EvenOdd
22
+
- This takes an input from the user and determines if the number input is even or odd.
23
+
24
+
## Factorial
25
+
- Simple factorial example in c++.
26
+
27
+
## FileSystem
28
+
- Contains c++ file system operations.
29
+
30
+
## MathLibraryFunctions
31
+
- Contins c++ Math library functions
32
+
33
+
## PrimeNumbers
34
+
- Determines if a number input by the user is a prime number
0 commit comments