Search:

Type: Posts; User: Befiscure45

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    16,573

    Sorry if this doesnt make sense. I have posted a...

    Sorry if this doesnt make sense. I have posted a better question here...
  2. Reading a text file using stdin then traversing through multiple arrays

    I got a text file that is a single line of a string. For example:
    I need to read the file using stdin then traverse each characters into multiple arrays where each row shifts to the left by one...
  3. Replies
    7
    Views
    16,573

    I've already mentioned in one of my posts. But I...

    I've already mentioned in one of my posts. But I need to convert it to a 2D array where each new line is the first dimension of the array(row), and every char on that line is saved into the second...
  4. Replies
    7
    Views
    16,573

    Sorry. Here is the input file I will be using....

    Sorry. Here is the input file I will be using. 15820
  5. Replies
    7
    Views
    16,573

    The ifstream is just temporary. At least to read...

    The ifstream is just temporary. At least to read the text file correctly. But here is one that does use cin in it with a commandline argument. Should this be the model I should use?

    void...
  6. Replies
    7
    Views
    16,573

    Reading from a text file with stdin

    Hello, my project asks that I read input from stdin that allows redirection from a text file. Then redirect the output to a different file using stdout . It mentions that can't use file operations to...
  7. Thank you. I figured out that problem well while...

    Thank you. I figured out that problem well while i was doing debugging. I additionally forgot to add the Staff pointer to the vectorlist which is why the list function wouldn't work. So now it's...
  8. Thank you. That was it, I had forgotten to...

    Thank you. That was it, I had forgotten to convert to double and integers. That was something so simple that I've easily overlooked. You saved me hours of work. Now I was able to get my program to...
  9. Unfortunately I am getting the same error as I...

    Unfortunately I am getting the same error as I described above when I try to change it.
  10. When I tried to remove the "HourlyEmployee::" ,it...

    When I tried to remove the "HourlyEmployee::" ,it gave me another error:

    The employee pointer is only a temporary and it returns the values that I passed on.
  11. Inherited classes cannot call constructor

    Hello, I have an assignment that generally deals with Inherited classes and I'm stuck at a problem where I'm getting an error when I try calling the constructor:


    This is my parser class where I...
  12. Replies
    5
    Views
    1,494

    Thank you.

    Thank you.
  13. Replies
    5
    Views
    1,494

    So my first parameter is right? How would I get...

    So my first parameter is right? How would I get the length up to the next delimiter?
  14. Replies
    5
    Views
    1,494

    Parsing a string

    Hello all,
    I need help in trying to parse a string as part of my assignment. My function I have will receive a string and the values are each separated with forward slash (/) delimiters. The...
Results 1 to 14 of 15