├── .DS_Store ├── Book └── README.md ├── Class ├── A1_Test_Output_Format │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Add2Numbers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Add2Numbers_Error │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── AllWaysToWriteTheSavingsFunction │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── AnalyzeDataInAFile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── random.dat │ └── random.dat.bak ├── ApproximatePiWithSeriesPIover4 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Array_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Array_V1_2D │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Array_V2_Min_Max │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BinarySearch │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BubbleSort │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BubbleSort_DynamicMemoryAllocation_Pointers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BubbleSort_DynamicMemoryAllocation_Pointers__lab │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CPPTemplate │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Centigrade_to_Fahernheit_Conversion_Error │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CharacterArrayStringCompare │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CollatzSeqToFileAndAnalyzed │ ├── .dep.inc │ ├── Makefile │ ├── collatz_seq.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CollatzSequenceCount │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ComputerError │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ComputersCantEvenAdd │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ComputersMakeMistakes_ProgrammersError │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ControlDecimalPlaceOutput │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ControlDecimalPlaceOutput_V2_Rounding │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CreateWeatherFile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── weather1.dat │ └── weather2.dat ├── DietCoke.ods ├── EtoX_LehrApproach │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── EtoX_LehrApproach_1LineOfCode │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── EtoX_LehrApproach_1LineOfCode_Function │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── EtoX_LehrApproach_1LineOfCode_SelfStopping │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── EtoX_LehrApproach_doWhile_SelfStopping │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── EtoX_StudentCoding │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExampleTernaryOperatorInASpreadsheet.xlsx ├── Exponential_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Exponential_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Exponential_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_DoWhile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_ForLoop_Function │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_ForLoop_Log │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_ForLoop_ProofNoOverflow │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_ForLoop_ReadWriteFile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── n.dat │ ├── nFact.dat │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_on_way_to_Exponential │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FutureValueFunction │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_8thEd_Chap2_Prob5_FindAverage │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob10_MPG_float_types │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob10_MPG_int_types │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob12_LandCalculation_V1 │ ├── .LCKmain.cpp~ │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob12_LandCalculation_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob18_EnergyDrinkers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob20_PaintCoverage │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_LoanMonthlyPayment_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_LoanMonthlyPayment_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_LoanMonthlyPayment_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_double_wrong │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_float_MarkFix │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_float_wrong │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap5_Prob20_RandomNumberSearch │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap6_Prob11_AvgScore │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap6_Prob22_isPrime │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap6_Prob23_isPrime │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── prime.dat ├── Generate2DWeatherData │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── GenerateDataToAFile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── random.dat ├── GradeDependentIf_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeDependentIf_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeIndependentIf_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeIndependentIf_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeSwitchCase_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeSwitchCase_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeSwitchCase_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GradeTernaryOperator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_Dependent_If │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_Independent_If's │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_Switch_Case_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_Switch_Case_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_TernaryOperator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── HelloWorld │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── IfElseFormat │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── InvestigateRandomNumberRange_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── InvestigateRandomNumberRange_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Linear_Binary_Search │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_1FunctionImplementation │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_3FunctionImplementation │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Class_V1 │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Class_V2 │ ├── .dep.inc │ ├── Array.cpp │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_DynamicMemory │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Dynamic_Memory │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_PrintRowCol │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Structure │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Timing_Function_Comparison │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V1_TestingSwap │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V2_FindSmallest │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V3_LoopToSort │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V4_1FunctionCombined │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V4_Vector │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V4a_PointerNotation │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V4b_DynamicMemory │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V5_3vs1FunctionTiming │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── marksort_v5_3vs1functiontiming.exe.stackdump │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MenuSwitchCase │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MenuSwitchCase_Example │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MenuSwitchCase_doWhile │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MenuSwitchCase_doWhile_functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MenuWithSwitchCase │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu_With_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu_With_Out_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu_With_Out_Functions_Example_Homework │ ├── .LCKmain.cpp~ │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MilitaryBudget2022 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MonthlyPaymentCalculator.ods ├── Numbers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PIDartGame_RanomNumbers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PI_LehrApproach_DartBoard │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PI_LehrApproach_Sequence │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PassFailTernaryOperator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PayInPennies │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Pennies │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PiSeries │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PosNegSum_TernaryOperator_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PosNegSum_TernaryOperator_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PrimeNumber │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PrimeNumberFunction_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PrimeNumberFunction_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PrimeNumberTest_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PrimeNumberTest_V2Function │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── README.md ├── ReadAndQuantify2DWeatherData │ └── weather.dat ├── ReadAndQuantify2DWeatherData_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── ReadAndQuantify2DWeatherData_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── ReadAndQuantify2DWeatherData_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── ReadWeatherFile_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── weather1.dat │ └── weather2.dat ├── ReadWeatherFile_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── weather1.dat │ └── weather2.dat ├── Rectangle │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_AutoStop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_AutoStop_Array_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_AutoStop_Array_V2_MVC │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_AutoStop_Array_V2_MVC_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_ForLoop_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Retirement_ForLoop_V2_Account4FractionalPennies │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RockPaperScissors │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversionFromAlgebraic │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion_AllBranchingConstructs │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion_Incomplete │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── STLVector_V2_Min_Max │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savings │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsCalculator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsFunction_AllWaysToWriteAFunction │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_DoLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_2DArrayV5a_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV2_MVC │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV3_ParallelArray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV4_ParallelArray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV5_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_ForLoop_ArrayV6_Vectors │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflationCalcuator_V2_FileOutput │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── table.dat ├── SavingsInflationCalcuator_V3_FileInOut │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── table.dat ├── SavingsInflationCalcuator_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_2DArray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_ForLoop_2DArray │ └── Makefile ├── SavingsTable_ForLoop_Array │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_ForLoop_Array_MVCPattern │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_ForLoop_Array_MVCPattern_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_ForLoop_Array_STLVectors │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_With_2DArray_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_With_Arrays │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_With_Arrays_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_With_Vectors_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_Without_Arrays │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_doWhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savings_RuleOf72 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch+10thEd_Chap1_ProgProj_Prob4_FreeFall │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap1_ProgPorj_Prob3_PocketChange_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap1_ProgPorj_Prob3_PocketChange_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap1_ProgPorj_Prob3_PocketChange_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap1_ProgProj_Prob5_BigC │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap1_ProgProj_Prob5_BigC_v2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob13_CandyBars_IfElse │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob13_CandyBars_IndepIf │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob13_CandyBars_Ternary │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob16_HaircutType │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob16_Haircut_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob16_Haircut_V1a │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap2_Prob16_Haircut_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_10thEd_Chap5_Prob7_Date_to_Day │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_9thEd_Chap1_PracProg_Prob4_FreeFall │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_9thEd_Chap1_PracProg_Prob5_BannerC │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_9thEd_Chap2_Prob1_DietCoke │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_9thEd_Chap2_Prob9_Sums │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savitch_9thEd_Chap3_PracProb1_RockPaperScissors │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGradeABCDF.ods ├── ScoreVsGrade_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V4_DependentIf │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V4_IndependentIf │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V4_SwitchCase │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V4_SwitchCase_1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreVsGrade_V4_Ternary │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelSort │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelSort_with_Class_V1 │ ├── .dep.inc │ ├── Makefile │ ├── array.h │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelSort_with_Class_V2 │ ├── .dep.inc │ ├── Makefile │ ├── array.cpp │ ├── array.h │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelSort_with_Structures_V1 │ ├── .dep.inc │ ├── Makefile │ ├── array.h │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelSort_with_Structures_V2_Pointers │ ├── .dep.inc │ ├── Makefile │ ├── array.h │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SelectionSort │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SequenceClosedFormEq_vs_Recursion │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V4 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V5 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V6 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_8thEd_Chap5_Prob15_Duel_V7 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Shoot Out.jpg │ ├── Shoot Out.pdf │ └── Shoot Out.xml ├── ShootOut_V1 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V2 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V3 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V4 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Initials_CHAR_Arrray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Initials_Strings │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3IntegerNumbers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Names_Chars │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Names_Strings │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Names_V1_only_2_names_first │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3Numbers │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SortRace │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── TernaryOperatorMultipleDecisions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── TestGet │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Teststrcmp │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ThrowingDartsApproxPI │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── TimeClock │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Triangle │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Winter24 │ ├── BubbleSort │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── BubbleSort_1Functions │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── BubbleSort_3Functions │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── BubbleSort_Timing │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── marksort_timing.exe.stackdump │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── BubbleSort_withDo │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── DecimalBinaryOctalHex │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_1Function │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_1Function_Class │ │ ├── .dep.inc │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_1Function_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_3Function │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_3Functions │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_Class_V1 │ │ ├── .dep.inc │ │ ├── Array.h │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_Class_V2 │ │ ├── .dep.inc │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_Class_V3 │ │ ├── .dep.inc │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_Database │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_Timing │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── marksort_timing.exe.stackdump │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V1_TestingSwap │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V2_FindSmallest │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V4_Operational_Analysis │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V4_Timing │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V4_Timing_Vectors │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_V5_3vs1FunctionTiming │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── marksort_v5_3vs1functiontiming.exe.stackdump │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MarkSort_in_1Function │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── SelectionSort │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── SelectionSort_1Function │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── SelectionSort_3Functions │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── SelectionSort_Vector │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V2_function │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V3_function_PositiveValues │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V4_Array │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V4_Vector │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── isPrime_V5_2DArray │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── isPrime_V5_2DVector │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── WrongResult │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etox_StudentApprox_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etox_StudentApprox_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etox_StudentApprox_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── isPrimeFunction │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml └── nFactorial │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ ├── Makefile-variables.mk │ ├── c_standard_headers_indexer.c │ ├── configurations.xml │ ├── cpp_standard_headers_indexer.cpp │ ├── launcher.properties │ └── private.xml │ └── project.xml ├── CygCode1 ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── AllThingsArray_1_and_2_Dimensions.cpp ├── ApproximatePIRandomNumbers.cpp ├── Array.cpp ├── Array.h ├── Array.h.gch ├── Big36.cpp ├── BigBin.cpp ├── BigHex.cpp ├── BigInt.cpp ├── BigOct.cpp ├── BinarySearch.drawio ├── BinarySearch.pdf ├── BubSort.cpp ├── BubSortFunction.cpp ├── BubbleSortComparisonArrays.exe ├── BubbleSortComparisonArraysVsVectors.exe ├── BubbleSortComparisonDynamicArray.exe ├── BubbleSortComparisonStaticArray.exe ├── BubbleSortComparisonVectors.exe ├── CPPTemplate.cpp ├── CalcPay_V1.cpp ├── CalcPay_V2.cpp ├── CollatzSequence.cpp ├── CollatzSequenceV2.cpp ├── CompatibleSigns.cpp ├── ComputerError.cpp ├── ComputerErrorV2.cpp ├── CrapV1.cpp ├── CreatingStringFucntions.cpp ├── ExampleMenu.cpp ├── ExamplesWithMenu.cpp ├── ExpensivePowerFunction.cpp ├── Exponential_V1.cpp ├── Exponential_V2.cpp ├── Exponential_V3.cpp ├── Exponential_V4.cpp ├── Exponential_V5.cpp ├── Factorial_V1.cpp ├── Factorial_V2.cpp ├── FullMenu.cpp ├── FullMenuNoFunctionExamples.cpp ├── FullMenuWithFunctions.cpp ├── FullMenuWithFunctionsAndExamples.cpp ├── Gaddis_9thEd_Chap2_Prob12_LandCalc_V1.cpp ├── Gaddis_9thEd_Chap2_Prob12_LandCalculation_V2.cpp ├── GenCardV2.cpp ├── GenCardsV1.cpp ├── GradeKeyAndAnswers.cpp ├── GradeKeyAndAnswersFunctions.cpp ├── Grade_DependentIf.cpp ├── Grade_IndependentIf.cpp ├── Grade_SwitchCase.cpp ├── Grade_SwitchCaseV2.cpp ├── Grade_TernaryOperator.cpp ├── HelloWorld.cpp ├── Homework1 (2).zip ├── Homework1.zip ├── Homework1 │ ├── CPPTemplate.cpp │ ├── ComputerError.cpp │ ├── ComputerErrorV2.cpp │ ├── ExpensivePowerFunction.cpp │ ├── HelloWorld.cpp │ ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V1.cpp │ ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V2.cpp │ ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V1.cpp │ ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V2.cpp │ ├── gaddis_9thEd_Chap2_Prob9_DataTypeSize.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob1_AddSubMultDiv.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChange.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV1.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV2.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob4_FreeFall.cpp │ ├── savitch_10th_Chap1_ProgProj_Prob5_BigC_V1.cpp │ └── savitch_10th_Chap1_ProgProj_Prob5_BigC_V2.cpp ├── ISPproblem.ods ├── Inflation.cpp ├── LabAide.cpp ├── LabPercentage │ ├── CPPTemplate.cpp │ ├── ComputerError.cpp │ ├── ComputerErrorV2.cpp │ ├── ExpensivePowerFunction.cpp │ ├── HelloWorld.cpp │ ├── fedBudgetPercentage.cpp │ ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V1.cpp │ ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V2.cpp │ ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V1.cpp │ ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V2.cpp │ ├── gaddis_9thEd_Chap2_Prob9_DataTypeSize.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChange.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV1.cpp │ ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV2.cpp │ ├── savitch_10th_Chap1_ProgProj_Prob5_BigC_V1.cpp │ └── savitch_10th_Chap1_ProgProj_Prob5_BigC_V2.cpp ├── LinearAndBinarySearch.cpp ├── LoanCalculation.ods ├── LoanCalculation.xlsx ├── MarkSort1Function.cpp ├── MarkSort1FunctionTiming.cpp ├── MarkSort3Function.cpp ├── MarkSortClassStaticData.cpp ├── MarkSortClassStaticData_V1.cpp ├── MarkSortClassStaticData_V2.cpp ├── MarkSortDatabase.cpp ├── MarkSortDev3Function.cpp ├── MarkSortDev3FunctionPointers.cpp ├── MarkSortDevDataBaseSort.cpp ├── MarkSortDynamicArray.cpp ├── MarkSortStructureDynamicArrays.cpp ├── MarkSortStructureDynamicStructure.cpp ├── MarkSortStructureStaticArrays.cpp ├── MarkSortTiming.cpp ├── MarkSortVectorsTiming.cpp ├── MarkSortWithVectors.cpp ├── MenuWithSwitchDoLoop.cpp ├── MilitaryPercentages.cpp ├── MinMaxSearchArray.exe ├── MonthlyPaymentCalculator.cpp ├── MonthlyPaymentCalculator_DoubleWrong.cpp ├── MonthlyPaymentCalculator_FloatWrong.cpp ├── MonthlyPaymentCalculator_RightWay.cpp ├── MonthlyPaymentCalculator_RightWayHomeLoan.cpp ├── NumberToRomanNumeral.cpp ├── PayInPennies.cpp ├── PaycheckV1.cpp ├── PaycheckV2.cpp ├── PiSeries.cpp ├── PosNegTotSum.cpp ├── PullCardsFromFile.cpp ├── PullCardsInOrder.cpp ├── RandomInvestigate.cpp ├── RestaurantBill.cpp ├── RestaurantCalc.ods ├── RetirementTableArrayV3MVCFunctions.cpp ├── RetirementTableArrayV4MVCRecursiveCheck.cpp ├── RockPaperScissors.cpp ├── RomanNumeralConversion.cpp ├── RoomCapacity.cpp ├── RoomCapacity_V2.cpp ├── SavingsInflation.ods ├── SavingsTable2DArrayV3MVC.cpp ├── SavingsTable2DArrayV3MVCFunctions.cpp ├── SavingsTableArrayV1.cpp ├── SavingsTableArrayV2MVC.cpp ├── SavingsTableArrayV3MVCFunctions.cpp ├── SavingsTableNoArray.cpp ├── SelectionSortFunction.cpp ├── ShootOutV1.cpp ├── ShootOutV2.cpp ├── SodaPopProblem.ods ├── SomeWaysToWriteTheSameFunction.cpp ├── SomeWaysToWriteTheSameFunction_V2.cpp ├── Sort3Characters.cpp ├── Sort3Numbers.cpp ├── Sort3StringArrays.cpp ├── Sort3StringObjects.cpp ├── StringStreams.cpp ├── Sum2Dice.cpp ├── SumPosNegTot.cpp ├── Sum_i_to_n.cpp ├── SwitchCasePaycheck.cpp ├── SwitchCasePaycheckV2.cpp ├── SwitchCaseTrueFalse.cpp ├── TableOfTruth.cpp ├── TemperatureCurveFit.ods ├── TestCharLength.cpp ├── ThirdOrderPolynomial.ods ├── TicketPrice.cpp ├── Trig.cpp ├── TruthTable.cpp ├── TruthTable.ods ├── WrongAnswer.cpp ├── answers.dat ├── binomCoefficent.exe ├── bj.cpp ├── card.dat ├── fedBudgetPercentage.cpp ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V1.cpp ├── gaddis_9thEd_Chap2_Prob12_Perimeter_V2.cpp ├── gaddis_9thEd_Chap2_Prob13_CircuitBoardV1.cpp ├── gaddis_9thEd_Chap2_Prob13_CircuitBoardV2.cpp ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V1.cpp ├── gaddis_9thEd_Chap2_Prob20_PaintCoverage_V2.cpp ├── gaddis_9thEd_Chap2_Prob5_Average.cpp ├── gaddis_9thEd_Chap2_Prob8_TotalPurchase.cpp ├── gaddis_9thEd_Chap2_Prob8_TotalPurchaseV1.cpp ├── gaddis_9thEd_Chap2_Prob8_TotalPurchaseV2.cpp ├── gaddis_9thEd_Chap2_Prob9_DataTypeSize.cpp ├── grade.dat ├── isPrime.cpp ├── isPrimeV2.cpp ├── key.dat ├── savitch_10thEd_Chap1_ProgProj_Prob1_AddSubMultDiv.cpp ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChange.cpp ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV1.cpp ├── savitch_10thEd_Chap1_ProgProj_Prob3_PocketChangeV2.cpp ├── savitch_10thEd_Chap1_ProgProj_Prob4_FreeFall.cpp ├── savitch_10th_Chap1_ProgProj_Prob5_BigC_V1.cpp └── savitch_10th_Chap1_ProgProj_Prob5_BigC_V2.cpp ├── CygCode2 ├── .vscode │ ├── settings.json │ └── tasks.json ├── Add2Numbers.cpp ├── Array.h ├── Assignment1.zip ├── Assignment1 │ ├── Add2Numbers.cpp │ ├── CPPTemplate.cpp │ ├── Gaddis9thEdChap2Prob20PaintCoverage.cpp │ ├── HelloWorld.cpp │ ├── MilitaryNasaBudget_V1.cpp │ ├── MilitaryNasaBudget_V2.cpp │ ├── PlayAroundMakingMistakes.cpp │ ├── RandomSpreadSheet.ods │ ├── Savings.cpp │ ├── Savings.ods │ └── isPrime.cpp ├── BankCharges.ods ├── BubbleSortComparisonDynamicArray.cpp ├── BubbleSortComparisonDynamicArray_Structure_V1.cpp ├── BubbleSortComparisonStaticArray.cpp ├── BubbleSortComparisonStaticArray_PointerNotation.cpp ├── BubbleSortComparisonStaticArray_Structure_V1.cpp ├── BubbleSortComparisonVectors.cpp ├── BubbleSortHeaderAndCPPFiles_V1.cpp ├── BubbleSortHeaderAndCPPFiles_V2.cpp ├── BubbleSortHeaderAndCPPFiles_V3.cpp ├── BubbleSortHeaderAndCPPFiles_V4.cpp ├── CArray_V1.h ├── CArray_V2.h ├── CArray_V3.cpp ├── CArray_V3.h ├── CPPTemplate.cpp ├── CodeEHelloWorldProb4.cpp ├── DietCoke.ods ├── Gaddis9thEdChap2Prob10GasCost.cpp ├── Gaddis9thEdChap2Prob20PaintCoverage.cpp ├── Gaddis9thEdChap2Prob20PaintCoverage.exe ├── GaddisCalculationforChapter2.ods ├── Gaddis_9thEd_Chap3_Prob20_Trig.cpp ├── Gaddis_9thEd_Chap5_Prob7_PayInPennies_DoLoops.cpp ├── Gaddis_9thEd_Chap5_Prob7_PayInPennies_Files.cpp ├── Gaddis_9thEd_Chap5_Prob7_PayInPennies_ForLoops.cpp ├── Gaddis_9thEd_Chap5_Prob7_PayInPennies_WhileLoops.cpp ├── GasSavings.ods ├── HelloWorld.cpp ├── ISPPackageCostsPerHour.ods ├── LabStaticDynamicStructure_StaticArraysPart1.cpp ├── LabStaticDynamicStructure_StaticArraysPart2.cpp ├── LabStaticDynamicStructure_StaticArraysPart3.cpp ├── MarkMax.cpp ├── Menu.cpp ├── Menu.exe ├── MenuWithExampleCode.cpp ├── MenuWithExampleCode.exe ├── MenuWithFunctions.cpp ├── Menu_DoLoop.cpp ├── Menu_DoLoop.exe ├── MilitaryNasaBudget_V1.cpp ├── MilitaryNasaBudget_V2.cpp ├── MilitaryNasaBudget_V2.exe ├── MinMaxSearchArray.cpp ├── Order3CharStrings.cpp ├── Order3CharStrings.exe ├── Order3Floats.cpp ├── Order3Floats.exe ├── Order3Integers.cpp ├── Order3Integers.exe ├── Order3Strings.cpp ├── Order3Strings.exe ├── PayCheck.ods ├── PayForPennies.drawio ├── PayForPennies.pdf ├── Paycheck.cpp ├── PlayAroundMakingMistakes.cpp ├── RandomSpreadSheet.ods ├── Retirement.ods ├── RockPaperScissors.cpp ├── RockPaperScissors.exe ├── RomanNumeralConverter.cpp ├── RomanNumeralConverter.exe ├── SArray.h ├── Savings.cpp ├── Savings.ods ├── Savings_V1_No_Arrays.cpp ├── Savings_V2_ParallelArrays.cpp ├── Savings_V3_ParallelArrays_Functions.cpp ├── Savings_V4_ParallelArrays_Functions_2DimArray.cpp ├── Savitch10thEdChap1Prob4FreeFall.cpp ├── Savitch10thEdChap1Prob5BigC.cpp ├── Savitch_9thEd_Chap2_Prob9_Sums.cpp ├── ScoreToGrade_DependentIf.cpp ├── ScoreToGrade_IndependentIf.cpp ├── ScoreToGrade_SwitchCase.cpp ├── ScoreToGrade_Ternary.cpp ├── Search.cpp ├── SimpleVector.h ├── SimpleVectorMain.cpp ├── Sorts.cpp ├── Sorts_With_Class_V1.cpp ├── Sorts_With_Class_V2.cpp ├── Sorts_With_DynamicStructure.cpp ├── Sorts_With_StaticStructure.cpp ├── TenTankFiveMissile.cpp ├── TruthTable.cpp ├── TruthTable.ods ├── dollars.txt ├── howManyDays.txt ├── isPrime.cpp ├── isPrime.exe └── pennies.txt ├── FinalHints ├── CharacterArrayStringCompare │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap7_Prob4_VectorDisplayFunction │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap7_Prob6_ReadDataFromFile_RainyCloudySunny_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── Gaddis_9thEd_Chap7_Prob6_ReadDataFromFile_RainyCloudySunny_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat ├── Gaddis_9thEd_Chap7_Prob6_WriteDataToFile_RainyCloudySunny_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── weather.dat └── Gaddis_9thEd_Chap7_Prob6_WriteDataToFile_RainyCloudySunny_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ ├── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ └── project.xml │ └── weather.dat ├── FlowchartExamples ├── ConstructFlowChartDrawIO.xml ├── ConstructFlowChart_All4Pages.pdf ├── Constructs_To_Flowchart │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExampleDraw_IO_Flowchart.drawio ├── ExampleDraw_IO_Flowchart.pdf ├── ExampleMenuWithSwitchAndDoWhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FlowchartMenuSwitch.jpg ├── NewExample.drawio ├── Testing │ ├── TestingDrawIO.drawio │ └── TestingDrawIO.pdf └── flowchart_shapes_do_s_and_don_ts.jpg ├── Hmwk ├── .DS_Store ├── Assignment1.zip ├── Assignment1 │ ├── Gaddis_9thEd_Chap2_Prob15_Display4x7Triangle │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob16_DiamondPattern │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob17_StockPurchase │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob20_PaintCoverage_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob20_PaintCoverage_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob20_PaintCoverage_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob20_PaintFence │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_10thEd_Chap1_ProgProj_Prob4_FreeFall_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_10thEd_Chap1_ProgProj_Prob4_FreeFall_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Savitch_10thEd_Chap1_ProgProj_Prob5_BigC_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── Savitch_10thEd_Chap1_ProgProj_Prob5_BigC_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Assignment2 │ ├── CPPTemplate_Winter22 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Char │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap3_Prob10_Temp │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── Paycheck │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── DietCokeCalculations.xlsx └── README.md ├── Lab ├── Assign6Prob1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BigBinary │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BigHex │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BigInt │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BigOctal │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── BudgetCalculator.ods ├── CMathLibraryUtilization │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── CPPTemplate │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ClassCalculator.ods ├── CodeEScanTron │ ├── .dep.inc │ ├── Makefile │ ├── answer.dat │ ├── key.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Crap_v1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── DOD_NASA_Spending │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExamineEquation_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExamineEquation_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExamineEquation_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExamineEquation_V4 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExamineEquation_V5 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExponentialEfficientAprroach_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ExponentialStudentApproach │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FactorialFunctions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FencePaintProblem │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FibonacciRecursionTiming │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FuelOptimization.xls ├── FunctionConcepts_MonthlyPayment │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap2_Prob13_CircBoardPrice │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_V1_Float │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_V2_Double │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Gaddis_9thEd_Chap3_Prob19_MonthlyPayment_V3_CorrectTechnique │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GasCalculator.xlsx ├── GasComputations.xlsx ├── GasOptimumComputation(1).ods ├── Grade_SwitchCase_Altermative │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Grade_TernaryOperator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── HelloWorld.drawio ├── HelloWorld.drawio.pdf ├── Lab022924 │ ├── DietCokeDilema_v1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── DietCokeDilema_v2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── DietCokeDilema_v3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── DietCokeDilema_v4 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── HowToReadInStringsAndChars │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── MathLibrary │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Lab1_Minimize_Fuel_Costs.ods ├── Lab1_Minimize_Fuel_Costs_V2_with_Mod.ods ├── Lab1_incomplete │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabDynamicClass_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabDynamicClass_V2 │ ├── .dep.inc │ ├── Makefile │ ├── labdynamicclass_v2.exe.stackdump │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabDynamicClass_V3 │ ├── .dep.inc │ ├── Makefile │ ├── labdynamicclass_v3.exe.stackdump │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabMilitaryNasaBudget_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabMilitaryNasaBudget_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabStaticDynamicStructure_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabStaticDynamicStructure_V2 │ ├── .LCKmain.cpp~ │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LabStaticDynamicStructure_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LinearSearch │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LinearSearch_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── LinearSearch_vs_BinaraySearch │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Class_V1 │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Class_V2 │ ├── .dep.inc │ ├── Array.cpp │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Class_V3 │ ├── .dep.inc │ ├── Array.cpp │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_DyanmicMemory_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_DyanmicMemory_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_DynamicArrayDynamicStructure_V4 │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_DynamicArrayStaticStructure_V3 │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_PointerNotation │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_PointerNotation_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_PointerNotation_V2_Dyanmic_Memory │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_StaticArrayStaticStructure_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_StaticArrayStaticStructure_V2 │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Structures │ ├── .dep.inc │ ├── Array.h │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_Timing_Comparison │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V3_IansClass_DataBase │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_V5_IansClass_DataBase_2DArray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_in_1Function │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MarkSort_in_3Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Mark_Bubble_Selection_Sort │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu_Example_with_Calulator_Options_for_do_while │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Menu_With_Functions │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Menu_With_Functions_Examples │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── MilitaryBudget │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── NasaBudget │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PassNoPass │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PayCheckDietCoke.ods ├── PayWithPennies.drawio ├── PayWithPennies.pdf ├── Paycheck_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Paycheck_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PennyForYourThoughts.drawio ├── PennyForYourThoughts.drawio (1).pdf ├── PennyForYourThoughts.drawio.pdf ├── PennyMultiplicationProblem │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PiApproximation │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PiApproximation_Series │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PiApproximation_Series_ThrowingDarts │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── PosNegSums │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── QuizSignUpInClass.ods ├── README.md ├── RollingDice_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RollingDice_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConverter │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsCalculator.xlsx ├── SavingsCalculator │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsInflation.ods ├── SavingsInflationRetirement.ods ├── SavingsOnly.ods ├── SavingsTable.xlsx ├── SavingsTable_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SavingsTable_doWhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Savings_Inflation_Calculator_2D_Array │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_Array │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_ForLoop │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_MVC │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_MVC_Functions │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_ParallelArrays │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_Vectors │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_WhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_Inflation_Calculator_doWhileLoop │ ├── .dep.inc │ ├── Makefile │ ├── input.dat │ ├── main.cpp │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── output.dat ├── Savings_NoArrays │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScanTron │ ├── .dep.inc │ ├── Makefile │ ├── key_ans.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScanTron_GenData │ ├── .dep.inc │ ├── Makefile │ ├── key_ans.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ScoreGrade │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Search_Linear_Binary │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3_V3_CharArray │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Sort3_V3_String │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SumPositiveNegativeAndTotal │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ToKillADiet_er │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── TruthTable.xlsx ├── TruthTable │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Work022224 │ ├── DOD_NASA_Spending │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Gaddis_9thEd_Chap2_Prob13_CircBoardPrice │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── LabGasOptimizationSolution_Step3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── LabGasOptimizationSolution_Step4 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml └── strcmpExample │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ ├── Makefile-variables.mk │ ├── c_standard_headers_indexer.c │ ├── configurations.xml │ ├── cpp_standard_headers_indexer.cpp │ ├── launcher.properties │ └── private.xml │ └── project.xml ├── MidtermHints ├── Factorial_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Factorial_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── RomanNumeralConversion_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etoXSequence_V1 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etoXSequence_V2 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── etoXSequence_V3 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml └── etoXSequence_V4 │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ ├── Makefile-variables.mk │ ├── c_standard_headers_indexer.c │ ├── configurations.xml │ ├── cpp_standard_headers_indexer.cpp │ ├── launcher.properties │ └── private.xml │ └── project.xml ├── Proj ├── ClassExampleProjects_CrapGame │ ├── Craps_V1_RollingDiceStats │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── ExplorationOfRandomNumberGenerators_FloatRange │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── ExplorationOfRandomNumberGenerators_IntegerRange_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── ExplorationOfRandomNumberGenerators_Probabililty │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── FillFileWithCards │ ├── .dep.inc │ ├── Makefile │ ├── cards.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GameOfCraps │ ├── ChangeName │ │ └── nbproject │ │ │ └── configurations.xml │ ├── Craps_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── input.dat │ │ ├── input.dat.bak │ │ ├── main.cpp │ │ ├── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ └── project.xml │ │ └── output.dat │ ├── Craps_V4 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── input.dat │ │ ├── main.cpp │ │ ├── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ └── project.xml │ │ └── output.dat │ ├── InvestigateRandomNumbers_V1_RandomFunction │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── InvestigateRandomNumbers_V2_RangeOfIntegerValues │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── InvestigateRandomNumbers_V3_RangeOfFloatValues │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── RollingDice │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GenerateCards_V1 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── GenerateCards_V2 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── OldProjectCrapsDevelopment │ ├── ExampleProject1 │ │ ├── Craps_V1_Play1Game │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Craps_V2_LotsOfGames │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── ThrowTheDice_V1_StartOfTest │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── ThrowTheDice_V2_MinMax │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── ThrowTheDice_V3_Frequency │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ └── ThrowTheDice_V4_AllFrequency │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── MoreExamplesProject1 │ │ ├── Craps_V1 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── nGames.dat │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Craps_V2 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── nGames.dat │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Craps_V3 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── nGames.dat │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Craps_V4 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── nGames.dat │ │ │ ├── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ │ ├── Makefile-variables.mk │ │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ │ ├── configurations.xml │ │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ │ ├── launcher.properties │ │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ │ └── stats.dat │ │ ├── Create_Random_Float_0_to_1 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Investigate_Rand_Min_Max │ │ │ ├── .LCKmain.cpp~ │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── ProjectCheckOfSheet.ods │ │ ├── ProjectCheckOfSheet.pdf │ │ └── SumOfDice │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Project1_some_Stats_Flow_Pseudo_Checklist │ │ ├── FlowChartGameOfCraps_v3.jpg │ │ ├── GameOfCraps_V0 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── GameOfCraps_V1 │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── GameOfCraps_V2 │ │ │ ├── .dep.inc │ │ │ ├── GameInfo.dat │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── GameOfCraps_V3 │ │ │ ├── .dep.inc │ │ │ ├── GameInfo.dat │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── GameOfCraps_V4 │ │ │ ├── .dep.inc │ │ │ ├── GameInfo.dat │ │ │ ├── GameStats.dat │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── GameOfCraps_V5 │ │ │ ├── .dep.inc │ │ │ ├── GameInfo.dat │ │ │ ├── GameStats.dat │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── Min_Max_Random │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ │ ├── Makefile-Debug.mk │ │ │ │ ├── Makefile-Release.mk │ │ │ │ ├── Makefile-impl.mk │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── Package-Debug.bash │ │ │ │ ├── Package-Release.bash │ │ │ │ ├── configurations.xml │ │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── c_standard_headers_indexer.c │ │ │ │ ├── configurations.xml │ │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ │ └── project.xml │ │ ├── ProjectCheckOfSheet.ods │ │ ├── ProjectCheckOfSheet.pdf │ │ ├── Pseudo_code_GameOfCraps_V3.txt │ │ └── Throw_2_Dice │ │ │ ├── .dep.inc │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── Project1_with_Stats_Flowchart │ │ ├── Craps.pdf │ │ ├── Craps.xml │ │ ├── Craps_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ │ ├── Craps_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── fGames.dat │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ │ └── Craps_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── fGames.dat │ │ ├── main.cpp │ │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ │ └── stats.dat ├── Project1CheckOfSheet.ods ├── Project1CheckOfSheet.pdf ├── README.md ├── RecentProjectCrapsDevelopment │ ├── Craps_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── Craps_V4 │ │ ├── .dep.inc │ │ ├── Game_Parameters.dat │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── RollDice_V1 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ ├── RollDice_V2 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── c_standard_headers_indexer.c │ │ │ ├── configurations.xml │ │ │ ├── cpp_standard_headers_indexer.cpp │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ │ └── project.xml │ └── RollDice_V3 │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── main.cpp │ │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOutCalculations.pdf ├── ShootOut_V1 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V2 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V3 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── ShootOut_V4 │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── StudentExampleDocumentation1a.pdf ├── StudentExampleDocumentation1b.pdf ├── StudentExampleDocumentation1c.pdf ├── Unique5CardPull_V1_ValuesInOrder │ ├── .dep.inc │ ├── Makefile │ ├── main.cpp │ └── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ ├── Makefile-variables.mk │ │ ├── c_standard_headers_indexer.c │ │ ├── configurations.xml │ │ ├── cpp_standard_headers_indexer.cpp │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml └── Unique5CardPull_V2_CardsFromFile │ ├── .dep.inc │ ├── Makefile │ ├── card.dat │ ├── main.cpp │ └── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ ├── Makefile-variables.mk │ ├── c_standard_headers_indexer.c │ ├── configurations.xml │ ├── cpp_standard_headers_indexer.cpp │ ├── launcher.properties │ └── private.xml │ └── project.xml └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/.DS_Store -------------------------------------------------------------------------------- /Book/README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | -------------------------------------------------------------------------------- /Class/A1_Test_Output_Format/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/A1_Test_Output_Format/.dep.inc -------------------------------------------------------------------------------- /Class/A1_Test_Output_Format/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/A1_Test_Output_Format/Makefile -------------------------------------------------------------------------------- /Class/A1_Test_Output_Format/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/A1_Test_Output_Format/main.cpp -------------------------------------------------------------------------------- /Class/Add2Numbers/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers/.dep.inc -------------------------------------------------------------------------------- /Class/Add2Numbers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers/Makefile -------------------------------------------------------------------------------- /Class/Add2Numbers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers/main.cpp -------------------------------------------------------------------------------- /Class/Add2Numbers/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers/nbproject/project.xml -------------------------------------------------------------------------------- /Class/Add2Numbers_Error/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers_Error/.dep.inc -------------------------------------------------------------------------------- /Class/Add2Numbers_Error/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers_Error/Makefile -------------------------------------------------------------------------------- /Class/Add2Numbers_Error/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Add2Numbers_Error/main.cpp -------------------------------------------------------------------------------- /Class/AnalyzeDataInAFile/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/AnalyzeDataInAFile/.dep.inc -------------------------------------------------------------------------------- /Class/AnalyzeDataInAFile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/AnalyzeDataInAFile/Makefile -------------------------------------------------------------------------------- /Class/AnalyzeDataInAFile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/AnalyzeDataInAFile/main.cpp -------------------------------------------------------------------------------- /Class/AnalyzeDataInAFile/random.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/AnalyzeDataInAFile/random.dat -------------------------------------------------------------------------------- /Class/AnalyzeDataInAFile/random.dat.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/AnalyzeDataInAFile/random.dat.bak -------------------------------------------------------------------------------- /Class/Array_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1/.dep.inc -------------------------------------------------------------------------------- /Class/Array_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1/Makefile -------------------------------------------------------------------------------- /Class/Array_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1/main.cpp -------------------------------------------------------------------------------- /Class/Array_V1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1/nbproject/project.xml -------------------------------------------------------------------------------- /Class/Array_V1_2D/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1_2D/.dep.inc -------------------------------------------------------------------------------- /Class/Array_V1_2D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1_2D/Makefile -------------------------------------------------------------------------------- /Class/Array_V1_2D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1_2D/main.cpp -------------------------------------------------------------------------------- /Class/Array_V1_2D/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V1_2D/nbproject/project.xml -------------------------------------------------------------------------------- /Class/Array_V2_Min_Max/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V2_Min_Max/.dep.inc -------------------------------------------------------------------------------- /Class/Array_V2_Min_Max/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V2_Min_Max/Makefile -------------------------------------------------------------------------------- /Class/Array_V2_Min_Max/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Array_V2_Min_Max/main.cpp -------------------------------------------------------------------------------- /Class/BinarySearch/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BinarySearch/.dep.inc -------------------------------------------------------------------------------- /Class/BinarySearch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BinarySearch/Makefile -------------------------------------------------------------------------------- /Class/BinarySearch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BinarySearch/main.cpp -------------------------------------------------------------------------------- /Class/BubbleSort/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BubbleSort/.dep.inc -------------------------------------------------------------------------------- /Class/BubbleSort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BubbleSort/Makefile -------------------------------------------------------------------------------- /Class/BubbleSort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BubbleSort/main.cpp -------------------------------------------------------------------------------- /Class/BubbleSort/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/BubbleSort/nbproject/project.xml -------------------------------------------------------------------------------- /Class/CPPTemplate/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CPPTemplate/.dep.inc -------------------------------------------------------------------------------- /Class/CPPTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CPPTemplate/Makefile -------------------------------------------------------------------------------- /Class/CPPTemplate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CPPTemplate/main.cpp -------------------------------------------------------------------------------- /Class/CPPTemplate/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CPPTemplate/nbproject/project.xml -------------------------------------------------------------------------------- /Class/CollatzSequenceCount/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CollatzSequenceCount/.dep.inc -------------------------------------------------------------------------------- /Class/CollatzSequenceCount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CollatzSequenceCount/Makefile -------------------------------------------------------------------------------- /Class/CollatzSequenceCount/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CollatzSequenceCount/main.cpp -------------------------------------------------------------------------------- /Class/ComputerError/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputerError/.dep.inc -------------------------------------------------------------------------------- /Class/ComputerError/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputerError/Makefile -------------------------------------------------------------------------------- /Class/ComputerError/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputerError/main.cpp -------------------------------------------------------------------------------- /Class/ComputersCantEvenAdd/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputersCantEvenAdd/.dep.inc -------------------------------------------------------------------------------- /Class/ComputersCantEvenAdd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputersCantEvenAdd/Makefile -------------------------------------------------------------------------------- /Class/ComputersCantEvenAdd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ComputersCantEvenAdd/main.cpp -------------------------------------------------------------------------------- /Class/CreateWeatherFile/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CreateWeatherFile/.dep.inc -------------------------------------------------------------------------------- /Class/CreateWeatherFile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CreateWeatherFile/Makefile -------------------------------------------------------------------------------- /Class/CreateWeatherFile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CreateWeatherFile/main.cpp -------------------------------------------------------------------------------- /Class/CreateWeatherFile/weather1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CreateWeatherFile/weather1.dat -------------------------------------------------------------------------------- /Class/CreateWeatherFile/weather2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/CreateWeatherFile/weather2.dat -------------------------------------------------------------------------------- /Class/DietCoke.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/DietCoke.ods -------------------------------------------------------------------------------- /Class/EtoX_LehrApproach/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_LehrApproach/.dep.inc -------------------------------------------------------------------------------- /Class/EtoX_LehrApproach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_LehrApproach/Makefile -------------------------------------------------------------------------------- /Class/EtoX_LehrApproach/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_LehrApproach/main.cpp -------------------------------------------------------------------------------- /Class/EtoX_StudentCoding/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_StudentCoding/.dep.inc -------------------------------------------------------------------------------- /Class/EtoX_StudentCoding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_StudentCoding/Makefile -------------------------------------------------------------------------------- /Class/EtoX_StudentCoding/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/EtoX_StudentCoding/main.cpp -------------------------------------------------------------------------------- /Class/Exponential_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V1/.dep.inc -------------------------------------------------------------------------------- /Class/Exponential_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V1/Makefile -------------------------------------------------------------------------------- /Class/Exponential_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V1/main.cpp -------------------------------------------------------------------------------- /Class/Exponential_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V2/.dep.inc -------------------------------------------------------------------------------- /Class/Exponential_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V2/Makefile -------------------------------------------------------------------------------- /Class/Exponential_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V2/main.cpp -------------------------------------------------------------------------------- /Class/Exponential_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V3/.dep.inc -------------------------------------------------------------------------------- /Class/Exponential_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V3/Makefile -------------------------------------------------------------------------------- /Class/Exponential_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Exponential_V3/main.cpp -------------------------------------------------------------------------------- /Class/Factorial_DoWhile/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_DoWhile/.dep.inc -------------------------------------------------------------------------------- /Class/Factorial_DoWhile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_DoWhile/Makefile -------------------------------------------------------------------------------- /Class/Factorial_DoWhile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_DoWhile/main.cpp -------------------------------------------------------------------------------- /Class/Factorial_ForLoop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop/.dep.inc -------------------------------------------------------------------------------- /Class/Factorial_ForLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop/Makefile -------------------------------------------------------------------------------- /Class/Factorial_ForLoop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop/main.cpp -------------------------------------------------------------------------------- /Class/Factorial_ForLoop_Log/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop_Log/.dep.inc -------------------------------------------------------------------------------- /Class/Factorial_ForLoop_Log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop_Log/Makefile -------------------------------------------------------------------------------- /Class/Factorial_ForLoop_Log/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_ForLoop_Log/main.cpp -------------------------------------------------------------------------------- /Class/Factorial_WhileLoop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_WhileLoop/.dep.inc -------------------------------------------------------------------------------- /Class/Factorial_WhileLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_WhileLoop/Makefile -------------------------------------------------------------------------------- /Class/Factorial_WhileLoop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Factorial_WhileLoop/main.cpp -------------------------------------------------------------------------------- /Class/FutureValueFunction/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/FutureValueFunction/.dep.inc -------------------------------------------------------------------------------- /Class/FutureValueFunction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/FutureValueFunction/Makefile -------------------------------------------------------------------------------- /Class/FutureValueFunction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/FutureValueFunction/main.cpp -------------------------------------------------------------------------------- /Class/Generate2DWeatherData/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Generate2DWeatherData/.dep.inc -------------------------------------------------------------------------------- /Class/Generate2DWeatherData/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Generate2DWeatherData/Makefile -------------------------------------------------------------------------------- /Class/Generate2DWeatherData/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Generate2DWeatherData/main.cpp -------------------------------------------------------------------------------- /Class/Generate2DWeatherData/weather.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Generate2DWeatherData/weather.dat -------------------------------------------------------------------------------- /Class/GenerateDataToAFile/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GenerateDataToAFile/.dep.inc -------------------------------------------------------------------------------- /Class/GenerateDataToAFile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GenerateDataToAFile/Makefile -------------------------------------------------------------------------------- /Class/GenerateDataToAFile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GenerateDataToAFile/main.cpp -------------------------------------------------------------------------------- /Class/GenerateDataToAFile/random.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GenerateDataToAFile/random.dat -------------------------------------------------------------------------------- /Class/GradeDependentIf_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V1/.dep.inc -------------------------------------------------------------------------------- /Class/GradeDependentIf_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V1/Makefile -------------------------------------------------------------------------------- /Class/GradeDependentIf_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V1/main.cpp -------------------------------------------------------------------------------- /Class/GradeDependentIf_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V2/.dep.inc -------------------------------------------------------------------------------- /Class/GradeDependentIf_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V2/Makefile -------------------------------------------------------------------------------- /Class/GradeDependentIf_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeDependentIf_V2/main.cpp -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V1/.dep.inc -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V1/Makefile -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V1/main.cpp -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V2/.dep.inc -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V2/Makefile -------------------------------------------------------------------------------- /Class/GradeIndependentIf_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeIndependentIf_V2/main.cpp -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V1/.dep.inc -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V1/Makefile -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V1/main.cpp -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V2/.dep.inc -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V2/Makefile -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V2/main.cpp -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V3/.dep.inc -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V3/Makefile -------------------------------------------------------------------------------- /Class/GradeSwitchCase_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeSwitchCase_V3/main.cpp -------------------------------------------------------------------------------- /Class/GradeTernaryOperator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeTernaryOperator/.dep.inc -------------------------------------------------------------------------------- /Class/GradeTernaryOperator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeTernaryOperator/Makefile -------------------------------------------------------------------------------- /Class/GradeTernaryOperator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/GradeTernaryOperator/main.cpp -------------------------------------------------------------------------------- /Class/Grade_Independent_If's/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Independent_If's/.dep.inc -------------------------------------------------------------------------------- /Class/Grade_Independent_If's/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Independent_If's/Makefile -------------------------------------------------------------------------------- /Class/Grade_Independent_If's/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Independent_If's/main.cpp -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V1/.dep.inc -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V1/Makefile -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V1/main.cpp -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V2/.dep.inc -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V2/Makefile -------------------------------------------------------------------------------- /Class/Grade_Switch_Case_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_Switch_Case_V2/main.cpp -------------------------------------------------------------------------------- /Class/Grade_TernaryOperator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_TernaryOperator/.dep.inc -------------------------------------------------------------------------------- /Class/Grade_TernaryOperator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_TernaryOperator/Makefile -------------------------------------------------------------------------------- /Class/Grade_TernaryOperator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Grade_TernaryOperator/main.cpp -------------------------------------------------------------------------------- /Class/HelloWorld/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/HelloWorld/.dep.inc -------------------------------------------------------------------------------- /Class/HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/HelloWorld/Makefile -------------------------------------------------------------------------------- /Class/HelloWorld/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/HelloWorld/main.cpp -------------------------------------------------------------------------------- /Class/HelloWorld/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/HelloWorld/nbproject/project.xml -------------------------------------------------------------------------------- /Class/IfElseFormat/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/IfElseFormat/.dep.inc -------------------------------------------------------------------------------- /Class/IfElseFormat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/IfElseFormat/Makefile -------------------------------------------------------------------------------- /Class/IfElseFormat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/IfElseFormat/main.cpp -------------------------------------------------------------------------------- /Class/Linear_Binary_Search/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Linear_Binary_Search/.dep.inc -------------------------------------------------------------------------------- /Class/Linear_Binary_Search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Linear_Binary_Search/Makefile -------------------------------------------------------------------------------- /Class/Linear_Binary_Search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Linear_Binary_Search/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_Class_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V1/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_Class_V1/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V1/Array.h -------------------------------------------------------------------------------- /Class/MarkSort_Class_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V1/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_Class_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V1/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_Class_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V2/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_Class_V2/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V2/Array.cpp -------------------------------------------------------------------------------- /Class/MarkSort_Class_V2/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V2/Array.h -------------------------------------------------------------------------------- /Class/MarkSort_Class_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V2/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_Class_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Class_V2/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_DynamicMemory/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_DynamicMemory/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_DynamicMemory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_DynamicMemory/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_DynamicMemory/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_DynamicMemory/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_Dynamic_Memory/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Dynamic_Memory/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_Dynamic_Memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Dynamic_Memory/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_Dynamic_Memory/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Dynamic_Memory/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_PrintRowCol/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_PrintRowCol/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_PrintRowCol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_PrintRowCol/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_PrintRowCol/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_PrintRowCol/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_Structure/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Structure/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_Structure/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Structure/Array.h -------------------------------------------------------------------------------- /Class/MarkSort_Structure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Structure/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_Structure/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_Structure/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_V1_TestingSwap/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V1_TestingSwap/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_V1_TestingSwap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V1_TestingSwap/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_V1_TestingSwap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V1_TestingSwap/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_V2_FindSmallest/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V2_FindSmallest/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_V2_FindSmallest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V2_FindSmallest/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_V2_FindSmallest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V2_FindSmallest/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_V3_LoopToSort/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V3_LoopToSort/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_V3_LoopToSort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V3_LoopToSort/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_V3_LoopToSort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V3_LoopToSort/main.cpp -------------------------------------------------------------------------------- /Class/MarkSort_V4_Vector/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V4_Vector/.dep.inc -------------------------------------------------------------------------------- /Class/MarkSort_V4_Vector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V4_Vector/Makefile -------------------------------------------------------------------------------- /Class/MarkSort_V4_Vector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MarkSort_V4_Vector/main.cpp -------------------------------------------------------------------------------- /Class/MenuSwitchCase/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase/.dep.inc -------------------------------------------------------------------------------- /Class/MenuSwitchCase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase/Makefile -------------------------------------------------------------------------------- /Class/MenuSwitchCase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase/main.cpp -------------------------------------------------------------------------------- /Class/MenuSwitchCase_Example/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_Example/.dep.inc -------------------------------------------------------------------------------- /Class/MenuSwitchCase_Example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_Example/Makefile -------------------------------------------------------------------------------- /Class/MenuSwitchCase_Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_Example/main.cpp -------------------------------------------------------------------------------- /Class/MenuSwitchCase_doWhile/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_doWhile/.dep.inc -------------------------------------------------------------------------------- /Class/MenuSwitchCase_doWhile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_doWhile/Makefile -------------------------------------------------------------------------------- /Class/MenuSwitchCase_doWhile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuSwitchCase_doWhile/main.cpp -------------------------------------------------------------------------------- /Class/MenuWithSwitchCase/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuWithSwitchCase/.dep.inc -------------------------------------------------------------------------------- /Class/MenuWithSwitchCase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuWithSwitchCase/Makefile -------------------------------------------------------------------------------- /Class/MenuWithSwitchCase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MenuWithSwitchCase/main.cpp -------------------------------------------------------------------------------- /Class/Menu_With_Functions/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Functions/.dep.inc -------------------------------------------------------------------------------- /Class/Menu_With_Functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Functions/Makefile -------------------------------------------------------------------------------- /Class/Menu_With_Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Functions/main.cpp -------------------------------------------------------------------------------- /Class/Menu_With_Out_Functions/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Out_Functions/.dep.inc -------------------------------------------------------------------------------- /Class/Menu_With_Out_Functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Out_Functions/Makefile -------------------------------------------------------------------------------- /Class/Menu_With_Out_Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Menu_With_Out_Functions/main.cpp -------------------------------------------------------------------------------- /Class/MilitaryBudget2022/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MilitaryBudget2022/.dep.inc -------------------------------------------------------------------------------- /Class/MilitaryBudget2022/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MilitaryBudget2022/Makefile -------------------------------------------------------------------------------- /Class/MilitaryBudget2022/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MilitaryBudget2022/main.cpp -------------------------------------------------------------------------------- /Class/MonthlyPaymentCalculator.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/MonthlyPaymentCalculator.ods -------------------------------------------------------------------------------- /Class/Numbers/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Numbers/.dep.inc -------------------------------------------------------------------------------- /Class/Numbers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Numbers/Makefile -------------------------------------------------------------------------------- /Class/Numbers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Numbers/main.cpp -------------------------------------------------------------------------------- /Class/Numbers/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Numbers/nbproject/project.xml -------------------------------------------------------------------------------- /Class/PIDartGame_RanomNumbers/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PIDartGame_RanomNumbers/.dep.inc -------------------------------------------------------------------------------- /Class/PIDartGame_RanomNumbers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PIDartGame_RanomNumbers/Makefile -------------------------------------------------------------------------------- /Class/PIDartGame_RanomNumbers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PIDartGame_RanomNumbers/main.cpp -------------------------------------------------------------------------------- /Class/PI_LehrApproach_Sequence/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PI_LehrApproach_Sequence/.dep.inc -------------------------------------------------------------------------------- /Class/PI_LehrApproach_Sequence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PI_LehrApproach_Sequence/Makefile -------------------------------------------------------------------------------- /Class/PI_LehrApproach_Sequence/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PI_LehrApproach_Sequence/main.cpp -------------------------------------------------------------------------------- /Class/PassFailTernaryOperator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PassFailTernaryOperator/.dep.inc -------------------------------------------------------------------------------- /Class/PassFailTernaryOperator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PassFailTernaryOperator/Makefile -------------------------------------------------------------------------------- /Class/PassFailTernaryOperator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PassFailTernaryOperator/main.cpp -------------------------------------------------------------------------------- /Class/PayInPennies/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PayInPennies/.dep.inc -------------------------------------------------------------------------------- /Class/PayInPennies/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PayInPennies/Makefile -------------------------------------------------------------------------------- /Class/PayInPennies/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PayInPennies/main.cpp -------------------------------------------------------------------------------- /Class/Pennies/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Pennies/.dep.inc -------------------------------------------------------------------------------- /Class/Pennies/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Pennies/Makefile -------------------------------------------------------------------------------- /Class/Pennies/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Pennies/main.cpp -------------------------------------------------------------------------------- /Class/Pennies/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Pennies/nbproject/project.xml -------------------------------------------------------------------------------- /Class/PiSeries/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PiSeries/.dep.inc -------------------------------------------------------------------------------- /Class/PiSeries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PiSeries/Makefile -------------------------------------------------------------------------------- /Class/PiSeries/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PiSeries/main.cpp -------------------------------------------------------------------------------- /Class/PiSeries/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PiSeries/nbproject/project.xml -------------------------------------------------------------------------------- /Class/PrimeNumber/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumber/.dep.inc -------------------------------------------------------------------------------- /Class/PrimeNumber/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumber/Makefile -------------------------------------------------------------------------------- /Class/PrimeNumber/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumber/main.cpp -------------------------------------------------------------------------------- /Class/PrimeNumber/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumber/nbproject/project.xml -------------------------------------------------------------------------------- /Class/PrimeNumberFunction_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberFunction_V1/.dep.inc -------------------------------------------------------------------------------- /Class/PrimeNumberFunction_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberFunction_V1/Makefile -------------------------------------------------------------------------------- /Class/PrimeNumberFunction_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberFunction_V1/main.cpp -------------------------------------------------------------------------------- /Class/PrimeNumberFunction_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberFunction_V2/.dep.inc -------------------------------------------------------------------------------- /Class/PrimeNumberFunction_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberFunction_V2/Makefile -------------------------------------------------------------------------------- /Class/PrimeNumberTest_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberTest_V1/.dep.inc -------------------------------------------------------------------------------- /Class/PrimeNumberTest_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberTest_V1/Makefile -------------------------------------------------------------------------------- /Class/PrimeNumberTest_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/PrimeNumberTest_V1/main.cpp -------------------------------------------------------------------------------- /Class/README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | -------------------------------------------------------------------------------- /Class/Rectangle/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Rectangle/.dep.inc -------------------------------------------------------------------------------- /Class/Rectangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Rectangle/Makefile -------------------------------------------------------------------------------- /Class/Rectangle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Rectangle/main.cpp -------------------------------------------------------------------------------- /Class/Retirement/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement/.dep.inc -------------------------------------------------------------------------------- /Class/Retirement/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement/Makefile -------------------------------------------------------------------------------- /Class/Retirement/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement/main.cpp -------------------------------------------------------------------------------- /Class/Retirement_AutoStop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_AutoStop/.dep.inc -------------------------------------------------------------------------------- /Class/Retirement_AutoStop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_AutoStop/Makefile -------------------------------------------------------------------------------- /Class/Retirement_AutoStop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_AutoStop/main.cpp -------------------------------------------------------------------------------- /Class/Retirement_ForLoop_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_ForLoop_V1/.dep.inc -------------------------------------------------------------------------------- /Class/Retirement_ForLoop_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_ForLoop_V1/Makefile -------------------------------------------------------------------------------- /Class/Retirement_ForLoop_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Retirement_ForLoop_V1/main.cpp -------------------------------------------------------------------------------- /Class/RockPaperScissors/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/RockPaperScissors/.dep.inc -------------------------------------------------------------------------------- /Class/RockPaperScissors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/RockPaperScissors/Makefile -------------------------------------------------------------------------------- /Class/RockPaperScissors/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/RockPaperScissors/main.cpp -------------------------------------------------------------------------------- /Class/STLVector_V2_Min_Max/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/STLVector_V2_Min_Max/.dep.inc -------------------------------------------------------------------------------- /Class/STLVector_V2_Min_Max/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/STLVector_V2_Min_Max/Makefile -------------------------------------------------------------------------------- /Class/STLVector_V2_Min_Max/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/STLVector_V2_Min_Max/main.cpp -------------------------------------------------------------------------------- /Class/Savings/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings/.dep.inc -------------------------------------------------------------------------------- /Class/Savings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings/Makefile -------------------------------------------------------------------------------- /Class/Savings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings/main.cpp -------------------------------------------------------------------------------- /Class/Savings/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings/nbproject/project.xml -------------------------------------------------------------------------------- /Class/SavingsCalculator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsCalculator/.dep.inc -------------------------------------------------------------------------------- /Class/SavingsCalculator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsCalculator/Makefile -------------------------------------------------------------------------------- /Class/SavingsCalculator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsCalculator/main.cpp -------------------------------------------------------------------------------- /Class/SavingsInflationCalcuator_V3_FileInOut/input.dat: -------------------------------------------------------------------------------- 1 | 48 100 6 -------------------------------------------------------------------------------- /Class/SavingsTable_2DArray/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_2DArray/.dep.inc -------------------------------------------------------------------------------- /Class/SavingsTable_2DArray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_2DArray/Makefile -------------------------------------------------------------------------------- /Class/SavingsTable_2DArray/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_2DArray/main.cpp -------------------------------------------------------------------------------- /Class/SavingsTable_ForLoop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_ForLoop/.dep.inc -------------------------------------------------------------------------------- /Class/SavingsTable_ForLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_ForLoop/Makefile -------------------------------------------------------------------------------- /Class/SavingsTable_ForLoop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SavingsTable_ForLoop/main.cpp -------------------------------------------------------------------------------- /Class/Savings_RuleOf72/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings_RuleOf72/.dep.inc -------------------------------------------------------------------------------- /Class/Savings_RuleOf72/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings_RuleOf72/Makefile -------------------------------------------------------------------------------- /Class/Savings_RuleOf72/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Savings_RuleOf72/main.cpp -------------------------------------------------------------------------------- /Class/ScoreVsGradeABCDF.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGradeABCDF.ods -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V1/.dep.inc -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V1/Makefile -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V1/main.cpp -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V2/.dep.inc -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V2/Makefile -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V2/main.cpp -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V3/.dep.inc -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V3/Makefile -------------------------------------------------------------------------------- /Class/ScoreVsGrade_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ScoreVsGrade_V3/main.cpp -------------------------------------------------------------------------------- /Class/SelSort/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort/.dep.inc -------------------------------------------------------------------------------- /Class/SelSort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort/Makefile -------------------------------------------------------------------------------- /Class/SelSort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort/main.cpp -------------------------------------------------------------------------------- /Class/SelSort/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort/nbproject/project.xml -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V1/.dep.inc -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V1/Makefile -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V1/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V1/array.h -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V1/main.cpp -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V2/.dep.inc -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V2/Makefile -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V2/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V2/array.h -------------------------------------------------------------------------------- /Class/SelSort_with_Class_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelSort_with_Class_V2/main.cpp -------------------------------------------------------------------------------- /Class/SelectionSort/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelectionSort/.dep.inc -------------------------------------------------------------------------------- /Class/SelectionSort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelectionSort/Makefile -------------------------------------------------------------------------------- /Class/SelectionSort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SelectionSort/main.cpp -------------------------------------------------------------------------------- /Class/ShootOut/Shoot Out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut/Shoot Out.jpg -------------------------------------------------------------------------------- /Class/ShootOut/Shoot Out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut/Shoot Out.pdf -------------------------------------------------------------------------------- /Class/ShootOut/Shoot Out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut/Shoot Out.xml -------------------------------------------------------------------------------- /Class/ShootOut_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V1/.dep.inc -------------------------------------------------------------------------------- /Class/ShootOut_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V1/Makefile -------------------------------------------------------------------------------- /Class/ShootOut_V1/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V1/card.dat -------------------------------------------------------------------------------- /Class/ShootOut_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V1/main.cpp -------------------------------------------------------------------------------- /Class/ShootOut_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V2/.dep.inc -------------------------------------------------------------------------------- /Class/ShootOut_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V2/Makefile -------------------------------------------------------------------------------- /Class/ShootOut_V2/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V2/card.dat -------------------------------------------------------------------------------- /Class/ShootOut_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V2/main.cpp -------------------------------------------------------------------------------- /Class/ShootOut_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V3/.dep.inc -------------------------------------------------------------------------------- /Class/ShootOut_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V3/Makefile -------------------------------------------------------------------------------- /Class/ShootOut_V3/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V3/card.dat -------------------------------------------------------------------------------- /Class/ShootOut_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V3/main.cpp -------------------------------------------------------------------------------- /Class/ShootOut_V4/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V4/.dep.inc -------------------------------------------------------------------------------- /Class/ShootOut_V4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V4/Makefile -------------------------------------------------------------------------------- /Class/ShootOut_V4/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V4/card.dat -------------------------------------------------------------------------------- /Class/ShootOut_V4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ShootOut_V4/main.cpp -------------------------------------------------------------------------------- /Class/Sort3Initials_Strings/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Initials_Strings/.dep.inc -------------------------------------------------------------------------------- /Class/Sort3Initials_Strings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Initials_Strings/Makefile -------------------------------------------------------------------------------- /Class/Sort3Initials_Strings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Initials_Strings/main.cpp -------------------------------------------------------------------------------- /Class/Sort3IntegerNumbers/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3IntegerNumbers/.dep.inc -------------------------------------------------------------------------------- /Class/Sort3IntegerNumbers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3IntegerNumbers/Makefile -------------------------------------------------------------------------------- /Class/Sort3IntegerNumbers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3IntegerNumbers/main.cpp -------------------------------------------------------------------------------- /Class/Sort3Names_Chars/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Chars/.dep.inc -------------------------------------------------------------------------------- /Class/Sort3Names_Chars/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Chars/Makefile -------------------------------------------------------------------------------- /Class/Sort3Names_Chars/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Chars/main.cpp -------------------------------------------------------------------------------- /Class/Sort3Names_Strings/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Strings/.dep.inc -------------------------------------------------------------------------------- /Class/Sort3Names_Strings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Strings/Makefile -------------------------------------------------------------------------------- /Class/Sort3Names_Strings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Names_Strings/main.cpp -------------------------------------------------------------------------------- /Class/Sort3Numbers/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Numbers/.dep.inc -------------------------------------------------------------------------------- /Class/Sort3Numbers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Numbers/Makefile -------------------------------------------------------------------------------- /Class/Sort3Numbers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Sort3Numbers/main.cpp -------------------------------------------------------------------------------- /Class/SortRace/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SortRace/.dep.inc -------------------------------------------------------------------------------- /Class/SortRace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SortRace/Makefile -------------------------------------------------------------------------------- /Class/SortRace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SortRace/main.cpp -------------------------------------------------------------------------------- /Class/SortRace/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/SortRace/nbproject/project.xml -------------------------------------------------------------------------------- /Class/TestGet/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TestGet/.dep.inc -------------------------------------------------------------------------------- /Class/TestGet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TestGet/Makefile -------------------------------------------------------------------------------- /Class/TestGet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TestGet/main.cpp -------------------------------------------------------------------------------- /Class/TestGet/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TestGet/nbproject/project.xml -------------------------------------------------------------------------------- /Class/Teststrcmp/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Teststrcmp/.dep.inc -------------------------------------------------------------------------------- /Class/Teststrcmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Teststrcmp/Makefile -------------------------------------------------------------------------------- /Class/Teststrcmp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Teststrcmp/main.cpp -------------------------------------------------------------------------------- /Class/ThrowingDartsApproxPI/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ThrowingDartsApproxPI/.dep.inc -------------------------------------------------------------------------------- /Class/ThrowingDartsApproxPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ThrowingDartsApproxPI/Makefile -------------------------------------------------------------------------------- /Class/ThrowingDartsApproxPI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/ThrowingDartsApproxPI/main.cpp -------------------------------------------------------------------------------- /Class/TimeClock/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TimeClock/.dep.inc -------------------------------------------------------------------------------- /Class/TimeClock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TimeClock/Makefile -------------------------------------------------------------------------------- /Class/TimeClock/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/TimeClock/main.cpp -------------------------------------------------------------------------------- /Class/Triangle/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Triangle/.dep.inc -------------------------------------------------------------------------------- /Class/Triangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Triangle/Makefile -------------------------------------------------------------------------------- /Class/Triangle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Triangle/main.cpp -------------------------------------------------------------------------------- /Class/Triangle/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Triangle/nbproject/project.xml -------------------------------------------------------------------------------- /Class/Winter24/BubbleSort/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/BubbleSort/.dep.inc -------------------------------------------------------------------------------- /Class/Winter24/BubbleSort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/BubbleSort/Makefile -------------------------------------------------------------------------------- /Class/Winter24/BubbleSort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/BubbleSort/main.cpp -------------------------------------------------------------------------------- /Class/Winter24/isPrime_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/isPrime_V1/.dep.inc -------------------------------------------------------------------------------- /Class/Winter24/isPrime_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/isPrime_V1/Makefile -------------------------------------------------------------------------------- /Class/Winter24/isPrime_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/Winter24/isPrime_V1/main.cpp -------------------------------------------------------------------------------- /Class/WrongResult/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/WrongResult/.dep.inc -------------------------------------------------------------------------------- /Class/WrongResult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/WrongResult/Makefile -------------------------------------------------------------------------------- /Class/WrongResult/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/WrongResult/main.cpp -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V1/.dep.inc -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V1/Makefile -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V1/main.cpp -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V2/.dep.inc -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V2/Makefile -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V2/main.cpp -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V3/.dep.inc -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V3/Makefile -------------------------------------------------------------------------------- /Class/etox_StudentApprox_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/etox_StudentApprox_V3/main.cpp -------------------------------------------------------------------------------- /Class/isPrimeFunction/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/isPrimeFunction/.dep.inc -------------------------------------------------------------------------------- /Class/isPrimeFunction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/isPrimeFunction/Makefile -------------------------------------------------------------------------------- /Class/isPrimeFunction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/isPrimeFunction/main.cpp -------------------------------------------------------------------------------- /Class/nFactorial/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/nFactorial/.dep.inc -------------------------------------------------------------------------------- /Class/nFactorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/nFactorial/Makefile -------------------------------------------------------------------------------- /Class/nFactorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Class/nFactorial/main.cpp -------------------------------------------------------------------------------- /CygCode1/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/.vscode/launch.json -------------------------------------------------------------------------------- /CygCode1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/.vscode/settings.json -------------------------------------------------------------------------------- /CygCode1/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/.vscode/tasks.json -------------------------------------------------------------------------------- /CygCode1/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Array.cpp -------------------------------------------------------------------------------- /CygCode1/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Array.h -------------------------------------------------------------------------------- /CygCode1/Array.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Array.h.gch -------------------------------------------------------------------------------- /CygCode1/Big36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Big36.cpp -------------------------------------------------------------------------------- /CygCode1/BigBin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BigBin.cpp -------------------------------------------------------------------------------- /CygCode1/BigHex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BigHex.cpp -------------------------------------------------------------------------------- /CygCode1/BigInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BigInt.cpp -------------------------------------------------------------------------------- /CygCode1/BigOct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BigOct.cpp -------------------------------------------------------------------------------- /CygCode1/BinarySearch.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BinarySearch.drawio -------------------------------------------------------------------------------- /CygCode1/BinarySearch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BinarySearch.pdf -------------------------------------------------------------------------------- /CygCode1/BubSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BubSort.cpp -------------------------------------------------------------------------------- /CygCode1/BubSortFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/BubSortFunction.cpp -------------------------------------------------------------------------------- /CygCode1/CPPTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CPPTemplate.cpp -------------------------------------------------------------------------------- /CygCode1/CalcPay_V1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CalcPay_V1.cpp -------------------------------------------------------------------------------- /CygCode1/CalcPay_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CalcPay_V2.cpp -------------------------------------------------------------------------------- /CygCode1/CollatzSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CollatzSequence.cpp -------------------------------------------------------------------------------- /CygCode1/CollatzSequenceV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CollatzSequenceV2.cpp -------------------------------------------------------------------------------- /CygCode1/CompatibleSigns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CompatibleSigns.cpp -------------------------------------------------------------------------------- /CygCode1/ComputerError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ComputerError.cpp -------------------------------------------------------------------------------- /CygCode1/ComputerErrorV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ComputerErrorV2.cpp -------------------------------------------------------------------------------- /CygCode1/CrapV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CrapV1.cpp -------------------------------------------------------------------------------- /CygCode1/CreatingStringFucntions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/CreatingStringFucntions.cpp -------------------------------------------------------------------------------- /CygCode1/ExampleMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ExampleMenu.cpp -------------------------------------------------------------------------------- /CygCode1/ExamplesWithMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ExamplesWithMenu.cpp -------------------------------------------------------------------------------- /CygCode1/ExpensivePowerFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ExpensivePowerFunction.cpp -------------------------------------------------------------------------------- /CygCode1/Exponential_V1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Exponential_V1.cpp -------------------------------------------------------------------------------- /CygCode1/Exponential_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Exponential_V2.cpp -------------------------------------------------------------------------------- /CygCode1/Exponential_V3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Exponential_V3.cpp -------------------------------------------------------------------------------- /CygCode1/Exponential_V4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Exponential_V4.cpp -------------------------------------------------------------------------------- /CygCode1/Exponential_V5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Exponential_V5.cpp -------------------------------------------------------------------------------- /CygCode1/Factorial_V1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Factorial_V1.cpp -------------------------------------------------------------------------------- /CygCode1/Factorial_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Factorial_V2.cpp -------------------------------------------------------------------------------- /CygCode1/FullMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/FullMenu.cpp -------------------------------------------------------------------------------- /CygCode1/FullMenuWithFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/FullMenuWithFunctions.cpp -------------------------------------------------------------------------------- /CygCode1/GenCardV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/GenCardV2.cpp -------------------------------------------------------------------------------- /CygCode1/GenCardsV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/GenCardsV1.cpp -------------------------------------------------------------------------------- /CygCode1/GradeKeyAndAnswers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/GradeKeyAndAnswers.cpp -------------------------------------------------------------------------------- /CygCode1/Grade_DependentIf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Grade_DependentIf.cpp -------------------------------------------------------------------------------- /CygCode1/Grade_IndependentIf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Grade_IndependentIf.cpp -------------------------------------------------------------------------------- /CygCode1/Grade_SwitchCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Grade_SwitchCase.cpp -------------------------------------------------------------------------------- /CygCode1/Grade_SwitchCaseV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Grade_SwitchCaseV2.cpp -------------------------------------------------------------------------------- /CygCode1/Grade_TernaryOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Grade_TernaryOperator.cpp -------------------------------------------------------------------------------- /CygCode1/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/HelloWorld.cpp -------------------------------------------------------------------------------- /CygCode1/Homework1 (2).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Homework1 (2).zip -------------------------------------------------------------------------------- /CygCode1/Homework1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Homework1.zip -------------------------------------------------------------------------------- /CygCode1/Homework1/CPPTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Homework1/CPPTemplate.cpp -------------------------------------------------------------------------------- /CygCode1/Homework1/ComputerError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Homework1/ComputerError.cpp -------------------------------------------------------------------------------- /CygCode1/Homework1/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Homework1/HelloWorld.cpp -------------------------------------------------------------------------------- /CygCode1/ISPproblem.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ISPproblem.ods -------------------------------------------------------------------------------- /CygCode1/Inflation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Inflation.cpp -------------------------------------------------------------------------------- /CygCode1/LabAide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/LabAide.cpp -------------------------------------------------------------------------------- /CygCode1/LinearAndBinarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/LinearAndBinarySearch.cpp -------------------------------------------------------------------------------- /CygCode1/LoanCalculation.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/LoanCalculation.ods -------------------------------------------------------------------------------- /CygCode1/LoanCalculation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/LoanCalculation.xlsx -------------------------------------------------------------------------------- /CygCode1/MarkSort1Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSort1Function.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSort1FunctionTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSort1FunctionTiming.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSort3Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSort3Function.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortClassStaticData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortClassStaticData.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortDatabase.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortDev3Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortDev3Function.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortDevDataBaseSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortDevDataBaseSort.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortDynamicArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortDynamicArray.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortTiming.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortVectorsTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortVectorsTiming.cpp -------------------------------------------------------------------------------- /CygCode1/MarkSortWithVectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MarkSortWithVectors.cpp -------------------------------------------------------------------------------- /CygCode1/MenuWithSwitchDoLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MenuWithSwitchDoLoop.cpp -------------------------------------------------------------------------------- /CygCode1/MilitaryPercentages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MilitaryPercentages.cpp -------------------------------------------------------------------------------- /CygCode1/MinMaxSearchArray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/MinMaxSearchArray.exe -------------------------------------------------------------------------------- /CygCode1/NumberToRomanNumeral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/NumberToRomanNumeral.cpp -------------------------------------------------------------------------------- /CygCode1/PayInPennies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PayInPennies.cpp -------------------------------------------------------------------------------- /CygCode1/PaycheckV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PaycheckV1.cpp -------------------------------------------------------------------------------- /CygCode1/PaycheckV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PaycheckV2.cpp -------------------------------------------------------------------------------- /CygCode1/PiSeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PiSeries.cpp -------------------------------------------------------------------------------- /CygCode1/PosNegTotSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PosNegTotSum.cpp -------------------------------------------------------------------------------- /CygCode1/PullCardsFromFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PullCardsFromFile.cpp -------------------------------------------------------------------------------- /CygCode1/PullCardsInOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/PullCardsInOrder.cpp -------------------------------------------------------------------------------- /CygCode1/RandomInvestigate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RandomInvestigate.cpp -------------------------------------------------------------------------------- /CygCode1/RestaurantBill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RestaurantBill.cpp -------------------------------------------------------------------------------- /CygCode1/RestaurantCalc.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RestaurantCalc.ods -------------------------------------------------------------------------------- /CygCode1/RockPaperScissors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RockPaperScissors.cpp -------------------------------------------------------------------------------- /CygCode1/RomanNumeralConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RomanNumeralConversion.cpp -------------------------------------------------------------------------------- /CygCode1/RoomCapacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RoomCapacity.cpp -------------------------------------------------------------------------------- /CygCode1/RoomCapacity_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/RoomCapacity_V2.cpp -------------------------------------------------------------------------------- /CygCode1/SavingsInflation.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SavingsInflation.ods -------------------------------------------------------------------------------- /CygCode1/SavingsTableArrayV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SavingsTableArrayV1.cpp -------------------------------------------------------------------------------- /CygCode1/SavingsTableArrayV2MVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SavingsTableArrayV2MVC.cpp -------------------------------------------------------------------------------- /CygCode1/SavingsTableNoArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SavingsTableNoArray.cpp -------------------------------------------------------------------------------- /CygCode1/SelectionSortFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SelectionSortFunction.cpp -------------------------------------------------------------------------------- /CygCode1/ShootOutV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ShootOutV1.cpp -------------------------------------------------------------------------------- /CygCode1/ShootOutV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ShootOutV2.cpp -------------------------------------------------------------------------------- /CygCode1/SodaPopProblem.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SodaPopProblem.ods -------------------------------------------------------------------------------- /CygCode1/Sort3Characters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sort3Characters.cpp -------------------------------------------------------------------------------- /CygCode1/Sort3Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sort3Numbers.cpp -------------------------------------------------------------------------------- /CygCode1/Sort3StringArrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sort3StringArrays.cpp -------------------------------------------------------------------------------- /CygCode1/Sort3StringObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sort3StringObjects.cpp -------------------------------------------------------------------------------- /CygCode1/StringStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/StringStreams.cpp -------------------------------------------------------------------------------- /CygCode1/Sum2Dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sum2Dice.cpp -------------------------------------------------------------------------------- /CygCode1/SumPosNegTot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SumPosNegTot.cpp -------------------------------------------------------------------------------- /CygCode1/Sum_i_to_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Sum_i_to_n.cpp -------------------------------------------------------------------------------- /CygCode1/SwitchCasePaycheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SwitchCasePaycheck.cpp -------------------------------------------------------------------------------- /CygCode1/SwitchCasePaycheckV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SwitchCasePaycheckV2.cpp -------------------------------------------------------------------------------- /CygCode1/SwitchCaseTrueFalse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/SwitchCaseTrueFalse.cpp -------------------------------------------------------------------------------- /CygCode1/TableOfTruth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TableOfTruth.cpp -------------------------------------------------------------------------------- /CygCode1/TemperatureCurveFit.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TemperatureCurveFit.ods -------------------------------------------------------------------------------- /CygCode1/TestCharLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TestCharLength.cpp -------------------------------------------------------------------------------- /CygCode1/ThirdOrderPolynomial.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/ThirdOrderPolynomial.ods -------------------------------------------------------------------------------- /CygCode1/TicketPrice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TicketPrice.cpp -------------------------------------------------------------------------------- /CygCode1/Trig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/Trig.cpp -------------------------------------------------------------------------------- /CygCode1/TruthTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TruthTable.cpp -------------------------------------------------------------------------------- /CygCode1/TruthTable.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/TruthTable.ods -------------------------------------------------------------------------------- /CygCode1/WrongAnswer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/WrongAnswer.cpp -------------------------------------------------------------------------------- /CygCode1/answers.dat: -------------------------------------------------------------------------------- 1 | AACBCCDDBBCDADDDABCAXYXY -------------------------------------------------------------------------------- /CygCode1/binomCoefficent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/binomCoefficent.exe -------------------------------------------------------------------------------- /CygCode1/bj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/bj.cpp -------------------------------------------------------------------------------- /CygCode1/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/card.dat -------------------------------------------------------------------------------- /CygCode1/fedBudgetPercentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/fedBudgetPercentage.cpp -------------------------------------------------------------------------------- /CygCode1/grade.dat: -------------------------------------------------------------------------------- 1 | svw0e) -------------------------------------------------------------------------------- /CygCode1/isPrime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/isPrime.cpp -------------------------------------------------------------------------------- /CygCode1/isPrimeV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/isPrimeV2.cpp -------------------------------------------------------------------------------- /CygCode1/key.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode1/key.dat -------------------------------------------------------------------------------- /CygCode2/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/.vscode/settings.json -------------------------------------------------------------------------------- /CygCode2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/.vscode/tasks.json -------------------------------------------------------------------------------- /CygCode2/Add2Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Add2Numbers.cpp -------------------------------------------------------------------------------- /CygCode2/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Array.h -------------------------------------------------------------------------------- /CygCode2/Assignment1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1.zip -------------------------------------------------------------------------------- /CygCode2/Assignment1/Add2Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/Add2Numbers.cpp -------------------------------------------------------------------------------- /CygCode2/Assignment1/CPPTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/CPPTemplate.cpp -------------------------------------------------------------------------------- /CygCode2/Assignment1/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/HelloWorld.cpp -------------------------------------------------------------------------------- /CygCode2/Assignment1/Savings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/Savings.cpp -------------------------------------------------------------------------------- /CygCode2/Assignment1/Savings.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/Savings.ods -------------------------------------------------------------------------------- /CygCode2/Assignment1/isPrime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Assignment1/isPrime.cpp -------------------------------------------------------------------------------- /CygCode2/BankCharges.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/BankCharges.ods -------------------------------------------------------------------------------- /CygCode2/CArray_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CArray_V1.h -------------------------------------------------------------------------------- /CygCode2/CArray_V2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CArray_V2.h -------------------------------------------------------------------------------- /CygCode2/CArray_V3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CArray_V3.cpp -------------------------------------------------------------------------------- /CygCode2/CArray_V3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CArray_V3.h -------------------------------------------------------------------------------- /CygCode2/CPPTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CPPTemplate.cpp -------------------------------------------------------------------------------- /CygCode2/CodeEHelloWorldProb4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/CodeEHelloWorldProb4.cpp -------------------------------------------------------------------------------- /CygCode2/DietCoke.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/DietCoke.ods -------------------------------------------------------------------------------- /CygCode2/GasSavings.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/GasSavings.ods -------------------------------------------------------------------------------- /CygCode2/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/HelloWorld.cpp -------------------------------------------------------------------------------- /CygCode2/ISPPackageCostsPerHour.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/ISPPackageCostsPerHour.ods -------------------------------------------------------------------------------- /CygCode2/MarkMax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MarkMax.cpp -------------------------------------------------------------------------------- /CygCode2/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Menu.cpp -------------------------------------------------------------------------------- /CygCode2/Menu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Menu.exe -------------------------------------------------------------------------------- /CygCode2/MenuWithExampleCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MenuWithExampleCode.cpp -------------------------------------------------------------------------------- /CygCode2/MenuWithExampleCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MenuWithExampleCode.exe -------------------------------------------------------------------------------- /CygCode2/MenuWithFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MenuWithFunctions.cpp -------------------------------------------------------------------------------- /CygCode2/Menu_DoLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Menu_DoLoop.cpp -------------------------------------------------------------------------------- /CygCode2/Menu_DoLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Menu_DoLoop.exe -------------------------------------------------------------------------------- /CygCode2/MilitaryNasaBudget_V1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MilitaryNasaBudget_V1.cpp -------------------------------------------------------------------------------- /CygCode2/MilitaryNasaBudget_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MilitaryNasaBudget_V2.cpp -------------------------------------------------------------------------------- /CygCode2/MilitaryNasaBudget_V2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MilitaryNasaBudget_V2.exe -------------------------------------------------------------------------------- /CygCode2/MinMaxSearchArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/MinMaxSearchArray.cpp -------------------------------------------------------------------------------- /CygCode2/Order3CharStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3CharStrings.cpp -------------------------------------------------------------------------------- /CygCode2/Order3CharStrings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3CharStrings.exe -------------------------------------------------------------------------------- /CygCode2/Order3Floats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Floats.cpp -------------------------------------------------------------------------------- /CygCode2/Order3Floats.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Floats.exe -------------------------------------------------------------------------------- /CygCode2/Order3Integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Integers.cpp -------------------------------------------------------------------------------- /CygCode2/Order3Integers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Integers.exe -------------------------------------------------------------------------------- /CygCode2/Order3Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Strings.cpp -------------------------------------------------------------------------------- /CygCode2/Order3Strings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Order3Strings.exe -------------------------------------------------------------------------------- /CygCode2/PayCheck.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/PayCheck.ods -------------------------------------------------------------------------------- /CygCode2/PayForPennies.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/PayForPennies.drawio -------------------------------------------------------------------------------- /CygCode2/PayForPennies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/PayForPennies.pdf -------------------------------------------------------------------------------- /CygCode2/Paycheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Paycheck.cpp -------------------------------------------------------------------------------- /CygCode2/RandomSpreadSheet.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/RandomSpreadSheet.ods -------------------------------------------------------------------------------- /CygCode2/Retirement.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Retirement.ods -------------------------------------------------------------------------------- /CygCode2/RockPaperScissors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/RockPaperScissors.cpp -------------------------------------------------------------------------------- /CygCode2/RockPaperScissors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/RockPaperScissors.exe -------------------------------------------------------------------------------- /CygCode2/RomanNumeralConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/RomanNumeralConverter.cpp -------------------------------------------------------------------------------- /CygCode2/RomanNumeralConverter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/RomanNumeralConverter.exe -------------------------------------------------------------------------------- /CygCode2/SArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/SArray.h -------------------------------------------------------------------------------- /CygCode2/Savings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Savings.cpp -------------------------------------------------------------------------------- /CygCode2/Savings.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Savings.ods -------------------------------------------------------------------------------- /CygCode2/Savings_V1_No_Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Savings_V1_No_Arrays.cpp -------------------------------------------------------------------------------- /CygCode2/ScoreToGrade_SwitchCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/ScoreToGrade_SwitchCase.cpp -------------------------------------------------------------------------------- /CygCode2/ScoreToGrade_Ternary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/ScoreToGrade_Ternary.cpp -------------------------------------------------------------------------------- /CygCode2/Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Search.cpp -------------------------------------------------------------------------------- /CygCode2/SimpleVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/SimpleVector.h -------------------------------------------------------------------------------- /CygCode2/SimpleVectorMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/SimpleVectorMain.cpp -------------------------------------------------------------------------------- /CygCode2/Sorts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Sorts.cpp -------------------------------------------------------------------------------- /CygCode2/Sorts_With_Class_V1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Sorts_With_Class_V1.cpp -------------------------------------------------------------------------------- /CygCode2/Sorts_With_Class_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/Sorts_With_Class_V2.cpp -------------------------------------------------------------------------------- /CygCode2/TenTankFiveMissile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/TenTankFiveMissile.cpp -------------------------------------------------------------------------------- /CygCode2/TruthTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/TruthTable.cpp -------------------------------------------------------------------------------- /CygCode2/TruthTable.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/TruthTable.ods -------------------------------------------------------------------------------- /CygCode2/dollars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/dollars.txt -------------------------------------------------------------------------------- /CygCode2/howManyDays.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /CygCode2/isPrime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/isPrime.cpp -------------------------------------------------------------------------------- /CygCode2/isPrime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/isPrime.exe -------------------------------------------------------------------------------- /CygCode2/pennies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/CygCode2/pennies.txt -------------------------------------------------------------------------------- /FlowchartExamples/NewExample.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/FlowchartExamples/NewExample.drawio -------------------------------------------------------------------------------- /Hmwk/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/.DS_Store -------------------------------------------------------------------------------- /Hmwk/Assignment1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment1.zip -------------------------------------------------------------------------------- /Hmwk/Assignment2/Char/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Char/.dep.inc -------------------------------------------------------------------------------- /Hmwk/Assignment2/Char/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Char/Makefile -------------------------------------------------------------------------------- /Hmwk/Assignment2/Char/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Char/main.cpp -------------------------------------------------------------------------------- /Hmwk/Assignment2/Paycheck/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Paycheck/.dep.inc -------------------------------------------------------------------------------- /Hmwk/Assignment2/Paycheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Paycheck/Makefile -------------------------------------------------------------------------------- /Hmwk/Assignment2/Paycheck/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/Assignment2/Paycheck/main.cpp -------------------------------------------------------------------------------- /Hmwk/DietCokeCalculations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Hmwk/DietCokeCalculations.xlsx -------------------------------------------------------------------------------- /Hmwk/README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | -------------------------------------------------------------------------------- /Lab/Assign6Prob1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Assign6Prob1/.dep.inc -------------------------------------------------------------------------------- /Lab/Assign6Prob1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Assign6Prob1/Makefile -------------------------------------------------------------------------------- /Lab/Assign6Prob1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Assign6Prob1/main.cpp -------------------------------------------------------------------------------- /Lab/BigBinary/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigBinary/.dep.inc -------------------------------------------------------------------------------- /Lab/BigBinary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigBinary/Makefile -------------------------------------------------------------------------------- /Lab/BigBinary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigBinary/main.cpp -------------------------------------------------------------------------------- /Lab/BigBinary/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigBinary/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/BigHex/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigHex/.dep.inc -------------------------------------------------------------------------------- /Lab/BigHex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigHex/Makefile -------------------------------------------------------------------------------- /Lab/BigHex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigHex/main.cpp -------------------------------------------------------------------------------- /Lab/BigHex/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigHex/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/BigInt/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigInt/.dep.inc -------------------------------------------------------------------------------- /Lab/BigInt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigInt/Makefile -------------------------------------------------------------------------------- /Lab/BigInt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigInt/main.cpp -------------------------------------------------------------------------------- /Lab/BigInt/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigInt/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/BigOctal/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigOctal/.dep.inc -------------------------------------------------------------------------------- /Lab/BigOctal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigOctal/Makefile -------------------------------------------------------------------------------- /Lab/BigOctal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigOctal/main.cpp -------------------------------------------------------------------------------- /Lab/BigOctal/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BigOctal/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/BudgetCalculator.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/BudgetCalculator.ods -------------------------------------------------------------------------------- /Lab/CMathLibraryUtilization/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CMathLibraryUtilization/.dep.inc -------------------------------------------------------------------------------- /Lab/CMathLibraryUtilization/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CMathLibraryUtilization/Makefile -------------------------------------------------------------------------------- /Lab/CMathLibraryUtilization/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CMathLibraryUtilization/main.cpp -------------------------------------------------------------------------------- /Lab/CPPTemplate/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CPPTemplate/.dep.inc -------------------------------------------------------------------------------- /Lab/CPPTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CPPTemplate/Makefile -------------------------------------------------------------------------------- /Lab/CPPTemplate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CPPTemplate/main.cpp -------------------------------------------------------------------------------- /Lab/ClassCalculator.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ClassCalculator.ods -------------------------------------------------------------------------------- /Lab/CodeEScanTron/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CodeEScanTron/.dep.inc -------------------------------------------------------------------------------- /Lab/CodeEScanTron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CodeEScanTron/Makefile -------------------------------------------------------------------------------- /Lab/CodeEScanTron/answer.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CodeEScanTron/answer.dat -------------------------------------------------------------------------------- /Lab/CodeEScanTron/key.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CodeEScanTron/key.dat -------------------------------------------------------------------------------- /Lab/CodeEScanTron/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/CodeEScanTron/main.cpp -------------------------------------------------------------------------------- /Lab/Crap_v1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Crap_v1/.dep.inc -------------------------------------------------------------------------------- /Lab/Crap_v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Crap_v1/Makefile -------------------------------------------------------------------------------- /Lab/Crap_v1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Crap_v1/main.cpp -------------------------------------------------------------------------------- /Lab/Crap_v1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Crap_v1/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/DOD_NASA_Spending/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/DOD_NASA_Spending/.dep.inc -------------------------------------------------------------------------------- /Lab/DOD_NASA_Spending/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/DOD_NASA_Spending/Makefile -------------------------------------------------------------------------------- /Lab/DOD_NASA_Spending/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/DOD_NASA_Spending/main.cpp -------------------------------------------------------------------------------- /Lab/ExamineEquation_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/ExamineEquation_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V1/Makefile -------------------------------------------------------------------------------- /Lab/ExamineEquation_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V1/main.cpp -------------------------------------------------------------------------------- /Lab/ExamineEquation_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/ExamineEquation_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V2/Makefile -------------------------------------------------------------------------------- /Lab/ExamineEquation_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V2/main.cpp -------------------------------------------------------------------------------- /Lab/ExamineEquation_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V3/.dep.inc -------------------------------------------------------------------------------- /Lab/ExamineEquation_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V3/Makefile -------------------------------------------------------------------------------- /Lab/ExamineEquation_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V3/main.cpp -------------------------------------------------------------------------------- /Lab/ExamineEquation_V4/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V4/.dep.inc -------------------------------------------------------------------------------- /Lab/ExamineEquation_V4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V4/Makefile -------------------------------------------------------------------------------- /Lab/ExamineEquation_V4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V4/main.cpp -------------------------------------------------------------------------------- /Lab/ExamineEquation_V5/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V5/.dep.inc -------------------------------------------------------------------------------- /Lab/ExamineEquation_V5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V5/Makefile -------------------------------------------------------------------------------- /Lab/ExamineEquation_V5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ExamineEquation_V5/main.cpp -------------------------------------------------------------------------------- /Lab/FactorialFunctions/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FactorialFunctions/.dep.inc -------------------------------------------------------------------------------- /Lab/FactorialFunctions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FactorialFunctions/Makefile -------------------------------------------------------------------------------- /Lab/FactorialFunctions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FactorialFunctions/main.cpp -------------------------------------------------------------------------------- /Lab/FencePaintProblem/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FencePaintProblem/.dep.inc -------------------------------------------------------------------------------- /Lab/FencePaintProblem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FencePaintProblem/Makefile -------------------------------------------------------------------------------- /Lab/FencePaintProblem/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FencePaintProblem/main.cpp -------------------------------------------------------------------------------- /Lab/FuelOptimization.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/FuelOptimization.xls -------------------------------------------------------------------------------- /Lab/GasCalculator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/GasCalculator.xlsx -------------------------------------------------------------------------------- /Lab/GasComputations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/GasComputations.xlsx -------------------------------------------------------------------------------- /Lab/GasOptimumComputation(1).ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/GasOptimumComputation(1).ods -------------------------------------------------------------------------------- /Lab/Grade_TernaryOperator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Grade_TernaryOperator/.dep.inc -------------------------------------------------------------------------------- /Lab/Grade_TernaryOperator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Grade_TernaryOperator/Makefile -------------------------------------------------------------------------------- /Lab/Grade_TernaryOperator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Grade_TernaryOperator/main.cpp -------------------------------------------------------------------------------- /Lab/HelloWorld.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/HelloWorld.drawio -------------------------------------------------------------------------------- /Lab/HelloWorld.drawio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/HelloWorld.drawio.pdf -------------------------------------------------------------------------------- /Lab/Lab022924/MathLibrary/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab022924/MathLibrary/.dep.inc -------------------------------------------------------------------------------- /Lab/Lab022924/MathLibrary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab022924/MathLibrary/Makefile -------------------------------------------------------------------------------- /Lab/Lab022924/MathLibrary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab022924/MathLibrary/main.cpp -------------------------------------------------------------------------------- /Lab/Lab1_Minimize_Fuel_Costs.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab1_Minimize_Fuel_Costs.ods -------------------------------------------------------------------------------- /Lab/Lab1_incomplete/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab1_incomplete/.dep.inc -------------------------------------------------------------------------------- /Lab/Lab1_incomplete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab1_incomplete/Makefile -------------------------------------------------------------------------------- /Lab/Lab1_incomplete/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Lab1_incomplete/main.cpp -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V1/Makefile -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V1/main.cpp -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V2/Makefile -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V2/main.cpp -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V3/.dep.inc -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V3/Makefile -------------------------------------------------------------------------------- /Lab/LabDynamicClass_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LabDynamicClass_V3/main.cpp -------------------------------------------------------------------------------- /Lab/LinearSearch/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch/.dep.inc -------------------------------------------------------------------------------- /Lab/LinearSearch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch/Makefile -------------------------------------------------------------------------------- /Lab/LinearSearch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch/main.cpp -------------------------------------------------------------------------------- /Lab/LinearSearch_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/LinearSearch_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch_V2/Makefile -------------------------------------------------------------------------------- /Lab/LinearSearch_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/LinearSearch_V2/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V1/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V1/Array.h -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V1/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V1/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V2/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V2/Array.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V2/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V2/Array.h -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V2/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V2/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V3/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V3/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V3/Array.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V3/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V3/Array.h -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V3/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_Class_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Class_V3/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_Structures/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Structures/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_Structures/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Structures/Array.h -------------------------------------------------------------------------------- /Lab/MarkSort_Structures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Structures/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_Structures/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_Structures/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_V1/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_V1/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_in_1Function/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_1Function/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_in_1Function/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_1Function/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_in_1Function/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_1Function/main.cpp -------------------------------------------------------------------------------- /Lab/MarkSort_in_3Functions/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_3Functions/.dep.inc -------------------------------------------------------------------------------- /Lab/MarkSort_in_3Functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_3Functions/Makefile -------------------------------------------------------------------------------- /Lab/MarkSort_in_3Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MarkSort_in_3Functions/main.cpp -------------------------------------------------------------------------------- /Lab/Menu/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/.dep.inc -------------------------------------------------------------------------------- /Lab/Menu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/Makefile -------------------------------------------------------------------------------- /Lab/Menu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/main.cpp -------------------------------------------------------------------------------- /Lab/Menu/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /Lab/Menu/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /Lab/Menu/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/Menu_With_Functions/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu_With_Functions/.dep.inc -------------------------------------------------------------------------------- /Lab/Menu_With_Functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu_With_Functions/Makefile -------------------------------------------------------------------------------- /Lab/Menu_With_Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Menu_With_Functions/main.cpp -------------------------------------------------------------------------------- /Lab/MilitaryBudget/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MilitaryBudget/.dep.inc -------------------------------------------------------------------------------- /Lab/MilitaryBudget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MilitaryBudget/Makefile -------------------------------------------------------------------------------- /Lab/MilitaryBudget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/MilitaryBudget/main.cpp -------------------------------------------------------------------------------- /Lab/NasaBudget/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/NasaBudget/.dep.inc -------------------------------------------------------------------------------- /Lab/NasaBudget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/NasaBudget/Makefile -------------------------------------------------------------------------------- /Lab/NasaBudget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/NasaBudget/main.cpp -------------------------------------------------------------------------------- /Lab/NasaBudget/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/NasaBudget/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/PassNoPass/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PassNoPass/.dep.inc -------------------------------------------------------------------------------- /Lab/PassNoPass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PassNoPass/Makefile -------------------------------------------------------------------------------- /Lab/PassNoPass/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PassNoPass/main.cpp -------------------------------------------------------------------------------- /Lab/PassNoPass/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PassNoPass/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/PayCheckDietCoke.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PayCheckDietCoke.ods -------------------------------------------------------------------------------- /Lab/PayWithPennies.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PayWithPennies.drawio -------------------------------------------------------------------------------- /Lab/PayWithPennies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PayWithPennies.pdf -------------------------------------------------------------------------------- /Lab/Paycheck_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/Paycheck_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V1/Makefile -------------------------------------------------------------------------------- /Lab/Paycheck_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V1/main.cpp -------------------------------------------------------------------------------- /Lab/Paycheck_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/Paycheck_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V2/Makefile -------------------------------------------------------------------------------- /Lab/Paycheck_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Paycheck_V2/main.cpp -------------------------------------------------------------------------------- /Lab/PennyForYourThoughts.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PennyForYourThoughts.drawio -------------------------------------------------------------------------------- /Lab/PennyForYourThoughts.drawio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PennyForYourThoughts.drawio.pdf -------------------------------------------------------------------------------- /Lab/PiApproximation/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation/.dep.inc -------------------------------------------------------------------------------- /Lab/PiApproximation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation/Makefile -------------------------------------------------------------------------------- /Lab/PiApproximation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation/main.cpp -------------------------------------------------------------------------------- /Lab/PiApproximation_Series/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation_Series/.dep.inc -------------------------------------------------------------------------------- /Lab/PiApproximation_Series/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation_Series/Makefile -------------------------------------------------------------------------------- /Lab/PiApproximation_Series/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PiApproximation_Series/main.cpp -------------------------------------------------------------------------------- /Lab/PosNegSums/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PosNegSums/.dep.inc -------------------------------------------------------------------------------- /Lab/PosNegSums/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PosNegSums/Makefile -------------------------------------------------------------------------------- /Lab/PosNegSums/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PosNegSums/main.cpp -------------------------------------------------------------------------------- /Lab/PosNegSums/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/PosNegSums/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/QuizSignUpInClass.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/QuizSignUpInClass.ods -------------------------------------------------------------------------------- /Lab/README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | -------------------------------------------------------------------------------- /Lab/RollingDice_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/RollingDice_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V1/Makefile -------------------------------------------------------------------------------- /Lab/RollingDice_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V1/main.cpp -------------------------------------------------------------------------------- /Lab/RollingDice_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/RollingDice_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V2/Makefile -------------------------------------------------------------------------------- /Lab/RollingDice_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RollingDice_V2/main.cpp -------------------------------------------------------------------------------- /Lab/RomanNumeralConverter/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RomanNumeralConverter/.dep.inc -------------------------------------------------------------------------------- /Lab/RomanNumeralConverter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RomanNumeralConverter/Makefile -------------------------------------------------------------------------------- /Lab/RomanNumeralConverter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/RomanNumeralConverter/main.cpp -------------------------------------------------------------------------------- /Lab/SavingsCalculator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsCalculator.xlsx -------------------------------------------------------------------------------- /Lab/SavingsCalculator/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsCalculator/.dep.inc -------------------------------------------------------------------------------- /Lab/SavingsCalculator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsCalculator/Makefile -------------------------------------------------------------------------------- /Lab/SavingsCalculator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsCalculator/main.cpp -------------------------------------------------------------------------------- /Lab/SavingsInflation.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsInflation.ods -------------------------------------------------------------------------------- /Lab/SavingsInflationRetirement.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsInflationRetirement.ods -------------------------------------------------------------------------------- /Lab/SavingsOnly.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsOnly.ods -------------------------------------------------------------------------------- /Lab/SavingsTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable.xlsx -------------------------------------------------------------------------------- /Lab/SavingsTable_ForLoop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_ForLoop/.dep.inc -------------------------------------------------------------------------------- /Lab/SavingsTable_ForLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_ForLoop/Makefile -------------------------------------------------------------------------------- /Lab/SavingsTable_ForLoop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_ForLoop/main.cpp -------------------------------------------------------------------------------- /Lab/SavingsTable_WhileLoop/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_WhileLoop/.dep.inc -------------------------------------------------------------------------------- /Lab/SavingsTable_WhileLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_WhileLoop/Makefile -------------------------------------------------------------------------------- /Lab/SavingsTable_WhileLoop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/SavingsTable_WhileLoop/main.cpp -------------------------------------------------------------------------------- /Lab/Savings_NoArrays/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Savings_NoArrays/.dep.inc -------------------------------------------------------------------------------- /Lab/Savings_NoArrays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Savings_NoArrays/Makefile -------------------------------------------------------------------------------- /Lab/Savings_NoArrays/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Savings_NoArrays/main.cpp -------------------------------------------------------------------------------- /Lab/ScanTron/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron/.dep.inc -------------------------------------------------------------------------------- /Lab/ScanTron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron/Makefile -------------------------------------------------------------------------------- /Lab/ScanTron/key_ans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron/key_ans.dat -------------------------------------------------------------------------------- /Lab/ScanTron/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron/main.cpp -------------------------------------------------------------------------------- /Lab/ScanTron/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/ScanTron_GenData/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron_GenData/.dep.inc -------------------------------------------------------------------------------- /Lab/ScanTron_GenData/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron_GenData/Makefile -------------------------------------------------------------------------------- /Lab/ScanTron_GenData/key_ans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron_GenData/key_ans.dat -------------------------------------------------------------------------------- /Lab/ScanTron_GenData/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScanTron_GenData/main.cpp -------------------------------------------------------------------------------- /Lab/ScoreGrade/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScoreGrade/.dep.inc -------------------------------------------------------------------------------- /Lab/ScoreGrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScoreGrade/Makefile -------------------------------------------------------------------------------- /Lab/ScoreGrade/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScoreGrade/main.cpp -------------------------------------------------------------------------------- /Lab/ScoreGrade/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ScoreGrade/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/Search_Linear_Binary/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Search_Linear_Binary/.dep.inc -------------------------------------------------------------------------------- /Lab/Search_Linear_Binary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Search_Linear_Binary/Makefile -------------------------------------------------------------------------------- /Lab/Search_Linear_Binary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Search_Linear_Binary/main.cpp -------------------------------------------------------------------------------- /Lab/Sort3_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V1/.dep.inc -------------------------------------------------------------------------------- /Lab/Sort3_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V1/Makefile -------------------------------------------------------------------------------- /Lab/Sort3_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V1/main.cpp -------------------------------------------------------------------------------- /Lab/Sort3_V1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V1/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/Sort3_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V2/.dep.inc -------------------------------------------------------------------------------- /Lab/Sort3_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V2/Makefile -------------------------------------------------------------------------------- /Lab/Sort3_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V2/main.cpp -------------------------------------------------------------------------------- /Lab/Sort3_V2/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V2/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/Sort3_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3/.dep.inc -------------------------------------------------------------------------------- /Lab/Sort3_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3/Makefile -------------------------------------------------------------------------------- /Lab/Sort3_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3/main.cpp -------------------------------------------------------------------------------- /Lab/Sort3_V3/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/Sort3_V3_CharArray/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_CharArray/.dep.inc -------------------------------------------------------------------------------- /Lab/Sort3_V3_CharArray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_CharArray/Makefile -------------------------------------------------------------------------------- /Lab/Sort3_V3_CharArray/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_CharArray/main.cpp -------------------------------------------------------------------------------- /Lab/Sort3_V3_String/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_String/.dep.inc -------------------------------------------------------------------------------- /Lab/Sort3_V3_String/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_String/Makefile -------------------------------------------------------------------------------- /Lab/Sort3_V3_String/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/Sort3_V3_String/main.cpp -------------------------------------------------------------------------------- /Lab/ToKillADiet_er/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ToKillADiet_er/.dep.inc -------------------------------------------------------------------------------- /Lab/ToKillADiet_er/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ToKillADiet_er/Makefile -------------------------------------------------------------------------------- /Lab/ToKillADiet_er/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/ToKillADiet_er/main.cpp -------------------------------------------------------------------------------- /Lab/TruthTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/TruthTable.xlsx -------------------------------------------------------------------------------- /Lab/TruthTable/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/TruthTable/.dep.inc -------------------------------------------------------------------------------- /Lab/TruthTable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/TruthTable/Makefile -------------------------------------------------------------------------------- /Lab/TruthTable/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/TruthTable/main.cpp -------------------------------------------------------------------------------- /Lab/TruthTable/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/TruthTable/nbproject/project.xml -------------------------------------------------------------------------------- /Lab/strcmpExample/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/strcmpExample/.dep.inc -------------------------------------------------------------------------------- /Lab/strcmpExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/strcmpExample/Makefile -------------------------------------------------------------------------------- /Lab/strcmpExample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Lab/strcmpExample/main.cpp -------------------------------------------------------------------------------- /MidtermHints/Factorial_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V1/.dep.inc -------------------------------------------------------------------------------- /MidtermHints/Factorial_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V1/Makefile -------------------------------------------------------------------------------- /MidtermHints/Factorial_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V1/main.cpp -------------------------------------------------------------------------------- /MidtermHints/Factorial_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V2/.dep.inc -------------------------------------------------------------------------------- /MidtermHints/Factorial_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V2/Makefile -------------------------------------------------------------------------------- /MidtermHints/Factorial_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V2/main.cpp -------------------------------------------------------------------------------- /MidtermHints/Factorial_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V3/.dep.inc -------------------------------------------------------------------------------- /MidtermHints/Factorial_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V3/Makefile -------------------------------------------------------------------------------- /MidtermHints/Factorial_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/MidtermHints/Factorial_V3/main.cpp -------------------------------------------------------------------------------- /Proj/FillFileWithCards/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/FillFileWithCards/.dep.inc -------------------------------------------------------------------------------- /Proj/FillFileWithCards/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/FillFileWithCards/Makefile -------------------------------------------------------------------------------- /Proj/FillFileWithCards/cards.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/FillFileWithCards/cards.dat -------------------------------------------------------------------------------- /Proj/FillFileWithCards/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/FillFileWithCards/main.cpp -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V1/.dep.inc -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V1/Makefile -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V1/main.cpp -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V2/.dep.inc -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V2/Makefile -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V2/main.cpp -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V3/.dep.inc -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V3/Makefile -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V3/input.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V3/input.dat -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V3/main.cpp -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V3/output.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V3/output.dat -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V4/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V4/.dep.inc -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V4/Makefile -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V4/input.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V4/input.dat -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V4/main.cpp -------------------------------------------------------------------------------- /Proj/GameOfCraps/Craps_V4/output.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GameOfCraps/Craps_V4/output.dat -------------------------------------------------------------------------------- /Proj/GenerateCards_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V1/.dep.inc -------------------------------------------------------------------------------- /Proj/GenerateCards_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V1/Makefile -------------------------------------------------------------------------------- /Proj/GenerateCards_V1/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V1/card.dat -------------------------------------------------------------------------------- /Proj/GenerateCards_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V1/main.cpp -------------------------------------------------------------------------------- /Proj/GenerateCards_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V2/.dep.inc -------------------------------------------------------------------------------- /Proj/GenerateCards_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V2/Makefile -------------------------------------------------------------------------------- /Proj/GenerateCards_V2/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V2/card.dat -------------------------------------------------------------------------------- /Proj/GenerateCards_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/GenerateCards_V2/main.cpp -------------------------------------------------------------------------------- /Proj/OldProjectCrapsDevelopment/MoreExamplesProject1/Craps_V1/nGames.dat: -------------------------------------------------------------------------------- 1 | 34.#i -------------------------------------------------------------------------------- /Proj/OldProjectCrapsDevelopment/Project1_some_Stats_Flow_Pseudo_Checklist/GameOfCraps_V3/GameInfo.dat: -------------------------------------------------------------------------------- 1 | 34.#i -------------------------------------------------------------------------------- /Proj/OldProjectCrapsDevelopment/Project1_some_Stats_Flow_Pseudo_Checklist/GameOfCraps_V4/GameInfo.dat: -------------------------------------------------------------------------------- 1 | 34.#i -------------------------------------------------------------------------------- /Proj/Project1CheckOfSheet.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/Project1CheckOfSheet.ods -------------------------------------------------------------------------------- /Proj/Project1CheckOfSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/Project1CheckOfSheet.pdf -------------------------------------------------------------------------------- /Proj/README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | -------------------------------------------------------------------------------- /Proj/RecentProjectCrapsDevelopment/Craps_V4/Game_Parameters.dat: -------------------------------------------------------------------------------- 1 | 5 2 | 15 -------------------------------------------------------------------------------- /Proj/ShootOutCalculations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOutCalculations.pdf -------------------------------------------------------------------------------- /Proj/ShootOut_V1/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V1/.dep.inc -------------------------------------------------------------------------------- /Proj/ShootOut_V1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V1/Makefile -------------------------------------------------------------------------------- /Proj/ShootOut_V1/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V1/card.dat -------------------------------------------------------------------------------- /Proj/ShootOut_V1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V1/main.cpp -------------------------------------------------------------------------------- /Proj/ShootOut_V2/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V2/.dep.inc -------------------------------------------------------------------------------- /Proj/ShootOut_V2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V2/Makefile -------------------------------------------------------------------------------- /Proj/ShootOut_V2/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V2/card.dat -------------------------------------------------------------------------------- /Proj/ShootOut_V2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V2/main.cpp -------------------------------------------------------------------------------- /Proj/ShootOut_V3/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V3/.dep.inc -------------------------------------------------------------------------------- /Proj/ShootOut_V3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V3/Makefile -------------------------------------------------------------------------------- /Proj/ShootOut_V3/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V3/card.dat -------------------------------------------------------------------------------- /Proj/ShootOut_V3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V3/main.cpp -------------------------------------------------------------------------------- /Proj/ShootOut_V4/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V4/.dep.inc -------------------------------------------------------------------------------- /Proj/ShootOut_V4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V4/Makefile -------------------------------------------------------------------------------- /Proj/ShootOut_V4/card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V4/card.dat -------------------------------------------------------------------------------- /Proj/ShootOut_V4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml1150258/CSC_CIS_5/HEAD/Proj/ShootOut_V4/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSC_CIS_5 2 | Dr. Lehr's Intro to Programming Course 3 | --------------------------------------------------------------------------------