CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: wuzup6678

Search: Search took 0.09 seconds.

  1. Replies
    6
    Views
    1,442

    Re: Array sort code help!!

    here is how i was thinking of using the swap
    void swap(int& x, int& y)
    {
    int temp;
    temp = x;
    x = y;
    y = temp;
    }// end swap()
  2. Replies
    6
    Views
    1,442

    Re: Array sort code help!!

    ok I am just trying to figure out how to even approach this questions that is all. Can someone explain what the question is even asking? because i am very lost :( I understand it wants it to print...
  3. Replies
    6
    Views
    1,442

    Re: Array sort code help!!

    I haven't learned how to do that yet so I have no idea how to use std::sort :(
  4. Replies
    6
    Views
    1,442

    Array sort code help!!

    I need help with writing a function called swap that sorts the elements of an array in order from highest to lowest values where they descend and ascend. A particular thing about this function is...
  5. please help with c++ program question over arrays!

    I am trying to write a program that keeps track of social security numbers (SSN) of customers of a bank. I have to assume that SSN is a four-digit number (e.g., 1234. 0123 is not allowed.). When the...
  6. Replies
    5
    Views
    1,888

    Re: help with c++ code if else statement

    Thanks so much for your help ur awesome!! it worked great :)
  7. Replies
    5
    Views
    1,888

    help with c++ code if else statement

    I made a code to put in the user name id and password then create a new password; if the user name&password are wrong it should come up with a loop saying "invalid user id you can try ___ number of...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured