Search:

Type: Posts; User: Nick Dillon

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,079

    Novice needing help PLEASE!!!!!

    Ok here is my situation. I am realy new to this stuff and dotn know crap to tell you the truth. But her eis my situation

    Here is my code:



    #include <iostream.h>
    #include <fstream.h>...
  2. Replies
    0
    Views
    911

    Need help ........

    Ok I have written this program that will read in a list from another file then spit the file back out into a new one but listed. Now how can i sort this list by alpabetical order using the last name?...
  3. Replies
    1
    Views
    954

    Does anyone have a .....

    copy of selsort (selection sort) that can be used with strings all i have is one for ints. Or how do i make one?
  4. Replies
    6
    Views
    2,021

    Fixed

    I forgot a big part of my code. Sorry guys here is the working code.


    #include <iostream.h>
    const int ROW = 7;
    const int COL = 7;

    int main()
    {
    char ch = 'X';
  5. Replies
    6
    Views
    2,021

    I think I found the problem

    Was it the j = 1 that you were refering to?
  6. Replies
    6
    Views
    2,021

    Game of Life help needed

    #include <iostream.h>
    const int ROW = 7;
    const int COL = 7;

    void main()
    {

    char M[ROW][COL]={
    {' ',' ',' ',' ',' ',' ',' '},
    ...
  7. Replies
    1
    Views
    910

    Having trouble with my game

    I have to write the game of life programm for my class. Keep in mind this is my first programming class and i hardly know anything. Well anyways i cant figure out how to check the neighbors. What do...
  8. Replies
    6
    Views
    1,038

    What Do I Do?

    I tried asking this on the c++ board but no luck.

    here is my problem. I have a program that ask a user to enter some numbers it then will spit out the max and min and number of numbers he...
  9. Replies
    3
    Views
    2,339

    I need some help!! PLEASE!!

    I tried asking this on the c++ board but no luck.

    here is my problem. I have a program that ask a user to enter some numbers it then will spit out the max and min and number of numbers he...
  10. Replies
    1
    Views
    716

    What do I need to do?

    I have a program that takes numbers entered and tells the user the total number or numbers entered and the max and the min. But then I ask the user if they would like to rerun the program and if they...
  11. Replies
    4
    Views
    2,322

    Where can i get a compiler?

    Where can I get a free compiler? Borlands site is down!
  12. Thread: Complier

    by Nick Dillon
    Replies
    3
    Views
    960

    What compiler do you use?

    What compiler do you use Zman?
  13. Thread: Complier

    by Nick Dillon
    Replies
    3
    Views
    960

    Complier

    Where can I get a free compiler on the net. All of borlands downloads are not working. Please help!!!!
  14. Replies
    4
    Views
    1,612

    What compiler do you use

    What complier are You using? I tried the code you gave again and still came up with the same error.
  15. Replies
    4
    Views
    1,612

    Need a favor!!!

    Can someone take this program and run it in thier complier and let me know it it runs or not. I am beginning to think my comipler is messed up (Quincy 99). I get this error (gcc.exe: cannot specify...
  16. Replies
    4
    Views
    1,066

    Still got the same error

    #include <iostream.h>

    int main()
    {
    const int MAX = 50;
    int count = 0;
    int index = 0;
    float numbers_array[MAX];
    char ch = 'Y';
    int max;
  17. Replies
    4
    Views
    1,066

    thanks

    I will make the corrections and see what happens
  18. Replies
    4
    Views
    1,066

    What does this mean?

    I am using a compiler called Quincy 99 and when I try to run my program I get this error.

    (gcc.exe: cannot specify -o with -c or -S and multiple compilations)

    Here is my program:


    #include...
  19. Replies
    1
    Views
    787

    Help needed!!

    I am writing a program for a class where we have to use a while and a dowhile statement in. We have to ask the user to enter a set of numbers and then tell them the maximum number and the minimum...
Results 1 to 19 of 19