Search:

Type: Posts; User: poolofdeath

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    2,061

    wow guys... I realize how stupid I am. So when i...

    wow guys... I realize how stupid I am. So when i want something to literally equal 0 i do one and when i want it to emulate something its two equal signs? btw the code works perfectly, thanks so...
  2. Replies
    17
    Views
    2,061

    If it does find a vowel it resets i to 0 so it...

    If it does find a vowel it resets i to 0 so it starts the search over because the position of the letters will be messed up.
  3. Replies
    17
    Views
    2,061

    #include #include using...

    #include <string>
    #include <iostream>
    using namespace std;

    void vowelremover(string&);
    string word;
    int main ()
    {

    cout << "Enter a word of which you want the vowels removed: ";
  4. Replies
    17
    Views
    2,061

    Okay the error is now "Unhandled exception at...

    Okay the error is now "Unhandled exception at 0x770b15de in FinishedLab6.exe: Microsoft C++ exception: std::out_of_range at memory location 0x0020f7f8.." I've had this error before but can't remember...
  5. Replies
    17
    Views
    2,061

    Oh wow I'm stupid. The double equal signs seems...

    Oh wow I'm stupid. The double equal signs seems to work, but when i run the program it says i'm using i without initializing it.
  6. Replies
    17
    Views
    2,061

    double equal signs doesnt work though...

    double equal signs doesnt work though...
  7. Replies
    17
    Views
    2,061

    must be a modifiable lvalue error

    This is supposed to remove vowels from a word. However the .at doesnt work, it says the 'a' has to be a modifiable lvalue... what does that mean?



    #include <string>
    #include <iostream>
    using...
  8. Replies
    3
    Views
    4,178

    Need a little help on a simple program.

    The program should find and delete all vowels in a word that is user entered. This is what I have so far and I know it should be essentially this format I just don't know how to set enteredword and...
Results 1 to 8 of 8