Search:

Type: Posts; User: bns1201

Search: Search took 0.00 seconds.

  1. Replies
    27
    Views
    4,475

    yea thats odd that you should say that cuz i just...

    yea thats odd that you should say that cuz i just wrote in fin before, i noticed that it wasnt there
  2. Replies
    27
    Views
    4,475

    i dont know why but in a mac ide it just doesnt...

    i dont know why but in a mac ide it just doesnt get passed the asking of the file name. So if you were to run it in a windows ide i just wanna see if its working.
  3. Replies
    27
    Views
    4,475

    oooo i see what you mean there. another question,...

    oooo i see what you mean there. another question, are you running this in a windows native ide?
  4. Replies
    27
    Views
    4,475

    so should i initialize lowest = 0 and highest =...

    so should i initialize lowest = 0
    and highest = size?
  5. Replies
    27
    Views
    4,475

    when you say my for loops are incorrect, and you...

    when you say my for loops are incorrect, and you mentioned them earlier, can you point me to where you are referring?
  6. Replies
    27
    Views
    4,475

    right they dont work for 4,5, and 6. But is there...

    right they dont work for 4,5, and 6. But is there any way you can evaluate options 4,5, and 6 in the sample run, and figure out the essentials that i am missing if any to make them run smoothly?...
  7. Replies
    27
    Views
    4,475

    if(option==2) { ...

    if(option==2)
    {
    for(x=low_bound; x<=high_bound; x++)
    {
    if(number[x]<lowest)
    {
    ...
  8. Replies
    27
    Views
    4,475

    so would i have to change: int lowest = -1; int...

    so would i have to change:
    int lowest = -1;
    int highest = 0;

    to:

    int lowest = 0;
    int highest = size;

    ?
  9. Replies
    27
    Views
    4,475

    Ok, its starting to make sense. The original...

    Ok, its starting to make sense. The original test.txt file that my instructor had given me included a 10 at the begining of the file, i have made the edit to show how it originally appeared b4 I had...
  10. Replies
    27
    Views
    4,475

    Alright, I initialized the integer number[] after...

    Alright, I initialized the integer number[] after i scanned the document, is that what you meant by creating it after you know what it is supposed to be?


    //Prompts user for the name of their...
  11. Replies
    27
    Views
    4,475

    with the initialization of size as 0, is that...

    with the initialization of size as 0, is that what the complaining is about? And yea i know about the system("PAUSE") ordeal lol, I have to have it run in a windows native environment, but I have a...
  12. Replies
    27
    Views
    4,475

    Im using netbeans6.1 on a mac, and it when i run...

    Im using netbeans6.1 on a mac, and it when i run and compile it, it begins fine, but when I put in the file name, it gives me this
  13. Replies
    27
    Views
    4,475

    If it reads the last data entry twice, how would...

    If it reads the last data entry twice, how would I fix that?
  14. Replies
    27
    Views
    4,475

    Help with a code using File I/O and Loops

    It seems as though I've written the code perfectly, although its not executing properly. I have to read a bunch of data from a file (which i named test.txt) and then execute a bunch of options to the...
Results 1 to 14 of 14