Search:

Type: Posts; User: jwillisoa

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    2,117

    So if it says row 0 column 1 that is actually row...

    So if it says row 0 column 1 that is actually row 1 column 2.... but the computer sees it as column 1 and row 0... i think that makes sense now..
  2. Replies
    17
    Views
    2,117

    It just seems like that is cheating, but if it...

    It just seems like that is cheating, but if it works i guess it is not.
  3. Replies
    17
    Views
    2,117

    Ok i got that part... i think i was missing this...

    Ok i got that part... i think i was missing this to get it to come out good:


    if (test < small)
    {
    small = test;
    c = j+1;
    r = i+1;
    }
    because it was coming out 1 off every time.
  4. Replies
    17
    Views
    2,117

    and actually wrong again for that matter... If it...

    and actually wrong again for that matter... If it is the first one it is coming up with huge numbers.. How does that happen..
  5. Replies
    17
    Views
    2,117

    no iwasnt saying you were wrong, i was saying i...

    no iwasnt saying you were wrong, i was saying i was wrong
  6. Replies
    17
    Views
    2,117

    nope again...

    nope again...
  7. Replies
    17
    Views
    2,117

    actually that doesnt work... maybe 1

    actually that doesnt work... maybe 1
  8. Replies
    17
    Views
    2,117

    i guess i need to set them to zero ay

    i guess i need to set them to zero ay
  9. Replies
    17
    Views
    2,117

    how are r or c undefined? they seem to be...

    how are r or c undefined? they seem to be initialized to me... when i say

    int i, j, r, c, test, small; small = num [0][0];
    correct?
  10. Replies
    17
    Views
    2,117

    location of a number in an array

    does anyone know why this will not tell me the row and column of the smallest number in the array?


    #include<stdio.h>

    int main()
    {
    #define NUMROWS 2
    #define NUMCOLS 3
  11. Thread: error

    by jwillisoa
    Replies
    6
    Views
    1,725

    i like the struct idea...

    Thanks for the pointer, i think i can make that work, and also the iostream thing is removed and it works peachy..
  12. Thread: error

    by jwillisoa
    Replies
    6
    Views
    1,725

    error

    I seem to never be able to figure out the little things that are screwing up my programs... It is always something tiny... anyone have a clue?

    #include <stdio.h>
    #include <iostream>

    main ()...
  13. Replies
    2
    Views
    1,634

    Hit a brick wall here...

    I think i have some mixed up stuff in my program, maybe some c++ in there as well. Used alot of internet sites and maybe misunderstood something. Im trying to get this thing to count the number of...
  14. Replies
    7
    Views
    1,539

    should i put it at the top before int main?

    should i put it at the top before int main?
  15. Replies
    7
    Views
    1,539

    awesome... it works great! I have sucha hard time...

    awesome... it works great! I have sucha hard time finding the little things sometimes, but im getting better. Thanks
  16. Replies
    7
    Views
    1,539

    i don't know i guess i was failing...

    i don't know i guess i was failing conservative... it just seemed like it needed to be there.
  17. Replies
    7
    Views
    1,539

    problems with structures and linked lists

    Im trying to create a structure that has a pointer to a list and allow someone to enter 5 grades. Display that and then enter one more followed by another reprint. Just keep getting an error saying...
  18. See it is something so simple that makes it seem...

    See it is something so simple that makes it seem so hard... thanks alot! It works like a champ now. Just so you know i tried a long time before i came for help... i appreciate it.
  19. Money input...

    #include <stdio.h>

    int main()
    {
    void change(float, int *, int *, int *, int *); /*Prototype*/

    int quarters, dimes, nickels, pennies;
    float firstnum = 1.88;
    float secnum = 0.32;...
  20. changed )++

    After the change the values are still way out to lunch. Something still is not right.
  21. trouble with passing adresses and calling on a function...

    im taking c programming and i have to get my program to say how many quartes dimes nickels and pennies are in a certain value... 3 different times... i get the display to look right, but the correct...
Results 1 to 21 of 21