Search:

Type: Posts; User: Tina

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,533

    Thank you very much Prelude.

    Thank you very much Prelude.
  2. Replies
    2
    Views
    922

    you can write a do while statement do { ...

    you can write a do while statement

    do
    {
    your conversion code
    cout << "Would you like to try again? (Y or N)"<< endl;
    cin >> UserContinue;
    }
    while (toupper (UserContinue) == 'Y');
  3. Replies
    2
    Views
    1,533

    Breaking down a string

    HELP PLEASE!!! I am writing a program putting in a street address.
    I have to disect the street address and capitalize each word in the street name. I have done this in a loop, using a find for each...
Results 1 to 3 of 3