diff --git a/63_CamelCase.cpp b/63_CamelCase.cpp index c198c3f..01ba7b1 100644 --- a/63_CamelCase.cpp +++ b/63_CamelCase.cpp @@ -1,6 +1,8 @@ // For this challenge you will be converting a string into camel case format. /* -have the function CamelCase(str) take the str parameter being passed and return it in proper camel case format where the first letter of each word is capitalized (excluding the first letter). The string will only contain letters and some combination of delimiter punctuation characters separating each word. +have the function CamelCase(str) take the str parameter being passed and return it in proper camel case format where +the first letter of each word is capitalized (excluding the first letter). The string will only contain letters and some combination +of delimiter punctuation characters separating each word. For example: if str is "BOB loves-coding" then your program should return the string bobLovesCoding. */ @@ -47,4 +49,4 @@ int main() cout << CamelCase("cats AND*Dogs-are Awesome") << endl; // catsAndDogsAreAwesome cout << CamelCase("a b c d-e-f%g") << endl; // aBCDEFG return 0; -} \ No newline at end of file +}