string intToStr(int num) {
//takes an int and returns a string
stringstream ss;
ss << num;
return ss.str();
}
//returns the reverse of the input string without altering it
string reverseString(string const s) {
string rev = string(s.rbegin(), s.rend());
return rev;
}
will i have to create seperate flowcharts for the functions at the bottom