/CSCI-3000

CSCI-3000 - Structured Programming II (C++)

Primary LanguageC++GNU General Public License v3.0GPL-3.0

CSCI-3000 - Structured Programming II (C++)

Since I decide to vastly overcomplicate all of the progams I make now (sort of a challenge, really), I've decided to upload my code.

Getting Started

These programs are by no mean "okay" for any sort of production use. Do not use my examples to create a big project for someone else (or yourself). These were meant for a Computer Science programming course in my college.

Prerequisites

What you'll need to compile and run my code:

G++ Compiler - Found in linux distros (Tested only on Ubuntu 16.06+ and with cygwin with G++ compiler on Windows 10)

Compiling

At the header of each file that I upload (that contains main()) will include the require g++ command to compile the program.

Generally, the format is as follows to compile with G++.

g++ someprogram.cpp -o out

And to run your new compiled program:

./out

This should get you generally up and running for some of my programs -- however, I never know how in-depth I'll go with the program, so it may need extra parameters.

Built With

Contributing

For now, I will not allow Pull Requests since this is more of code that is already finished.

However, if you can simplify it down and make it much more efficient -- let me know! I'll update it!

Authors

  • NotADeveloper - Otherwise known as AWildTeddyBear or Sgt. Cuddles -- the main and only contributor for all projects.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.

Acknowledgments

  • Biggest credit to Google -- You da real MVP
  • Credit to my Professor for helping with some of my issues with code
  • Credit to BoGuu for helping massively at the last minute for some stuff (and also teaching me some really cool tricks with C++)