Saturday 19 January 2013

Week 2 CL exercises

I've set up a github repo where I will be saving all my exercises through the semester to. I'm doing this as practice to get used to using git as well as the fact that I'm bouncing around four different OS's as well as a couple of different development set-ups.

https://github.com/Zardvark/OOP-344-Exercises is the main Repo link

Here are the first four CL programs:
add.cpp
div.cpp
mul.cpp
sub.cpp

And here is the prnenv.cpp program, after I finish my INT lab I will go back and attempt add on a "Did you mean:" search function to the prnenv program, if I get it working I will post the code directly to this blog

3 comments:

  1. Hi Lucas. I red your codes, but where is the isdigit() function's code. I wanna see it. Thank you.

    ReplyDelete
    Replies
    1. Hey, isdigit() is a built in function of the ctype library.

      http://www.cplusplus.com/reference/cctype/ has all the reference you need.

      Delete