+ 1
Why does my code have errors?
4 Respuestas
+ 9
and add "check =false;" at the end of while loop..
+ 5
You should fix below:
1/ compare(string source; string mixed)
change to:
compare(string source, string mixed)
(use comma to separate function parameters)
2/ Add ; at the end of line 43:
compare(sourceString, mixString(sourceString));
+ 3
You're welcome!
+ 1
thank you!