Search:

Type: Posts; User: whitey300

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,575

    however I'm not allowed to use classes, pointers,...

    however I'm not allowed to use classes, pointers, or structs
  2. Replies
    4
    Views
    1,575

    yes that is exactly how I want it to output. How...

    yes that is exactly how I want it to output. How do I set up a stack for it to work though?
  3. Replies
    4
    Views
    1,575

    2 dimensional array

    My current program takes user input for an expression tree, example *2x and outputs

    * 0 0
    2 0 0
    x 0 0

    *2x is stored in a string.
    the 2nd and 3rd columns represent a left-child right-child...
  4. Replies
    1
    Views
    1,027

    [B]2 Dimensional Array [/B]

    As of now my program as the user input an expression like *2x and then the program outputs it as

    *
    2
    x

    I am wanting to display zeros next to the elements, 2 columns of zeros so the output...
  5. Replies
    5
    Views
    1,208

    2 dimensional array!!!

    As of now my program as the user input an expression like *2x and then the program outputs it as

    *
    2
    x

    I am wanting to display zeros next to the elements, 2 columns of zeros so the output...
  6. Thread: need help!!!

    by whitey300
    Replies
    3
    Views
    872

    ok so how would I then output the elements the...

    ok so how would I then output the elements the user inputs into the left column. Do I need a for loop or how would do I need to go about it?
  7. Thread: need help!!!

    by whitey300
    Replies
    3
    Views
    872

    need help!!!

    I need to have the program take a user's input in prefix notation and display it in a left child-right child array representation of a tree.

    Ex: input: *2x
    output:
    ...
Results 1 to 7 of 8