Search:

Type: Posts; User: tarheelfan_08

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,610

    Linked List Add

    Hey guys, I have created the following code and I can not figure out how to do one thing, add users. I can do it manually, but I need to prompt the user for two new accounts and then add them to the...
  2. Replies
    2
    Views
    3,397

    Never mind guys I got my code to work! ...

    Never mind guys I got my code to work!



    #include "Inventory.h"
    using namespace std;

    Inventory::Inventory()
    {
    front = NULL;
  3. Replies
    2
    Views
    3,397

    This is what I have so far, am I completely...

    This is what I have so far, am I completely wrong??


    #include "Inventory.h"
    using namespace std;

    Inventory::Inventory()
    {
    front = NULL;
    rear = NULL;
  4. Replies
    2
    Views
    3,397

    Dynamic Queue

    Hey guys, I am working on creating a dynamic queue and I am having some problems. I got my code wrote to set up the actual code but I am unsure how to put my information in and print it. I need to...
  5. Replies
    1
    Views
    1,869

    Dynamic Stack Error

    Hey guys, I am running the following program and when I do it only shows the Gold Skate Board, can someone please tell me what I am doing wrong with my dynamic stack and why this does not work! It...
  6. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    I updated my coe and got it going guys but I have...

    I updated my coe and got it going guys but I have one final problem...my year is showing up wrong in the final out put!



    #include <iostream>
    #include <fstream>
    #include <iomanip>
    #include...
  7. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    But I need them both...dnt I?? The first one is...

    But I need them both...dnt I?? The first one is for the Stack class and the other is for the car
  8. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    Ok guys I got my code done using a dynamic...

    Ok guys I got my code done using a dynamic stack..all thats left is to fix my errors! Can someone please assist me??

    Header File


    #include <iostream>
    #include <fstream>
    #include <iomanip>...
  9. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    How would I do that??

    How would I do that??
  10. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    This is what I got so far! #include...

    This is what I got so far!



    #include <iostream>
    #include <fstream>
    #include <iomanip>
    #include <functional>
    #include <algorithm>
    #include <string>
  11. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    Oh and I somehow want to create car class as a...

    Oh and I somehow want to create car class as a list node to hold the information
  12. Thread: Stack

    by tarheelfan_08
    Replies
    10
    Views
    1,682

    Stack

    Hey guys, I have been looking into queue's and stacks this week guys and I decided that I would like to convert my current array into a stack. Does anyone know how to or can give me some assistance...
  13. Replies
    11
    Views
    3,964

    #include "CarClass.h" #include using...

    #include "CarClass.h"
    #include <iostream>
    using namespace std;

    int main()
    {
    CarList inventory;
    Car carObject;
    bool addAnotherCar = true;
  14. Replies
    1
    Views
    1,434

    Problem solved...typo in for loop #include...

    Problem solved...typo in for loop


    #include "Account.h"
    #include <vector> // this allows user to create a vector
    using namespace std;

    int main() {

    const int SIZE = 6;
  15. Replies
    1
    Views
    1,434

    Vector Delete Problem

    Hey guys! I have my code wrote and when I run it, the code gets all the way to this point


    //Delete Account 333411
    cout << "Here you will delete the account 333411: \n\n";...
  16. Reading from and writing to a data file

    Ok guys the follow code I am trying to read from the file!
    Add 2 New Accounts
    Then modify One Account
    Then Write everything back to the file!

    Can someone please help me...it does not work and...
  17. Replies
    11
    Views
    3,964

    The functions are blank because everything i...

    The functions are blank because everything i tried blew up big time! So to save time i just took out my messed up code
  18. Replies
    11
    Views
    3,964

    Here is my code #include "CarClass.h"...

    Here is my code


    #include "CarClass.h"
    #include <iostream>
    using namespace std;

    int main()
    {
    CarList inventory;
  19. Replies
    11
    Views
    3,964

    Thanks for the advice guys I will make some of...

    Thanks for the advice guys I will make some of these changes to clean my code...but can someone still help me with my linked list lol
  20. Replies
    11
    Views
    3,964

    Linked List

    Ok guys I plan to take an advanced c++ class this summer and I got some assignments from a friend of mine to try before I take the class! I got this one assignment and I really need help on it. I...
Results 1 to 20 of 20