Zach Dorow (zdorow)

zdorow

Geek Repo

Location:Eau Claire, WI

Github PK Tool:Github PK Tool

Zach Dorow's repositories

GradeCalculator

The calculates an average test score for 3 tests

Language:C++Stargazers:0Issues:0Issues:0

LetterCapitalization

Manipulate the case of letters

Language:C++Stargazers:0Issues:0Issues:0

DynamicallyAllocatedArray

Makes a dynamically allocated array

Language:C++Stargazers:0Issues:0Issues:0

binarySearch

Modify the binarySearch function presented in this chapter so it searches an array of strings instead of an array of ints. Test the function with a driver program. Use the code in the attached file as a skeleton for the driver program. This code also contains the word list which the function will search; the words are listed in alphabetical order.

Language:C++Stargazers:0Issues:0Issues:0
Language:C++Stargazers:0Issues:0Issues:0

multiFunction

Create a function named multiFunction. Pass two integer variables and one character variable to this function. The character variable will hold + (add), - (subtract), * (multiply), and / (divide). The function will determine which operation to perform based on the character variable. Within the function, use your choice of decision statements (e.g., if or switch) to determine which arithmetic operation to perform. The add operation will add the two integer variables, the subtract operation will subtract one integer variable from the other and so on. The function will return the result of the operation performed.

Language:C++Stargazers:0Issues:0Issues:0

TypingGameCPlusPlus

Command line typing game made for my Programming 1 class.

Language:C++Stargazers:0Issues:0Issues:0