Ok i need help i can't figure out how to instream into a string or the algorithm.
Write a C++ Program that uses:
Strings
Passing Strings to functions
Files Input and output.
Project Requirements:
Write a function called removeRepeats that, given a string, removes any repeated letters and returns a new string.
Write a main method that reads words (strings) from a file and writes the new strings (no repeated letters) to another file.
Several options are left for the programmer to determine:
Use of either c-string(char arrays) or the class strings .
Use of a container (array or vector) to store the strings. You can either store the strings in an array or vector - or just read and write without storage.
As you can see, many of the implementation details are left up to the programmer. At this point in the course you should be able to make design decisions based on good programming practices.
Sample input is a file that will be entered by a user and contains words. Note case should not matter but should be able to compare and delete. my example is
Google
Yahoo
Lie
Ggy
it should then out put like the following
Gogle
Yaho
Lie
Gy or gy