Search:

Type: Posts; User: nesagsar

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    It worked before I had to add the fractions...

    It worked before I had to add the fractions together.
  2. Thread: tree

    by nesagsar
    Replies
    15
    Views
    2,047

    My programs have to be really simple.

    My programs have to be really simple.
  3. Replies
    4
    Views
    2,002

    My compiler is really old.

    My compiler is really old.
  4. Replies
    19
    Views
    2,781

    Yeah I know. I had to essentialy throw out the...

    Yeah I know. I had to essentialy throw out the old program because my teacher said it was to advanced for my class. Now I have this.
  5. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    it is giving me wrong output. #include...

    it is giving me wrong output.


    #include <iostream.h>

    void addfraction (int w, int x, int y, int z, int& newnumerator, int& newdenominator)
    {
    int number1, number2;
    number1=w*z;
    ...
  6. Replies
    20
    Views
    2,102

    I got the sort function to work! yay us! Now,...

    I got the sort function to work! yay us!

    Now, where do I make the call to the search function?



    #include <iostream.h>
    #include <string.h>
    #include <fstream.h>
  7. Thread: tree

    by nesagsar
    Replies
    15
    Views
    2,047

    Hello?

    Hello?
  8. Replies
    4
    Views
    2,002

    program conversion.

    I have a sequential queue program that was supposed to be a linked queue program.

    How do I change it to be correct.



    #include <iostream.h>

    void enqueue (char queue[maxqueue], int& front,...
  9. Thread: tree

    by nesagsar
    Replies
    15
    Views
    2,047

    tree

    How do you make a binary tree?
  10. Replies
    19
    Views
    2,781

    oops. #include #include ...

    oops.



    #include <iostream.h>
    #include <conio.h>

    const max=10;

    int Max=10
  11. Replies
    19
    Views
    2,781

    Well, here is my new stack program code. It needs...

    Well, here is my new stack program code. It needs a lot of work.
  12. Replies
    19
    Views
    2,781

    Also, now I have to do both a sequential stack...

    Also, now I have to do both a sequential stack AND a linked queue.
  13. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    here is the new code #include ...

    here is the new code



    #include <iostream.h>

    int GCD(int a, int b )
    {
    int remainder, quotient, divisor, numerator;
    if (a > b)
  14. Replies
    20
    Views
    2,102

    is that here { ...

    is that here


    {
    if(table[count_2]>table[count_2+1])
    {

    meaning you meant this?
  15. Replies
    19
    Views
    2,781

    My teacher has informed me that this program is...

    My teacher has informed me that this program is not acceptable becasue it is object oriented and we were not taught that. Now I have to figure out how to do this simpler and I am running out of time...
  16. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    #include int GCD(int a, int b )...

    #include <iostream.h>

    int GCD(int a, int b )
    {
    int remainder, quotient, divisor, numerator;
    if (a > b)
    {
    remainder=a%b;
    quotient=a/b; divisor=b;
    }
  17. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    Alright, I fixed that. I got an email from the...

    Alright, I fixed that.

    I got an email from the teacher. He wants us to add two fractions together and simplify now. if he keeps adding stuff to our assignments we will never get it done.
  18. Thread: syntax errors

    by nesagsar
    Replies
    33
    Views
    3,439

    this is the new code. #include...

    this is the new code.



    #include <iostream.h>

    int GCD(int a, int b )
    {
    int remainder, quotient, divisor, numerator;
    if (a > b)
  19. Replies
    19
    Views
    2,781

    where is that? #include ...

    where is that?




    #include <iostream.h>
    #include <conio.h>

    const max_length=10;
  20. Replies
    20
    Views
    2,102

    #include #include ...

    #include <iostream.h>
    #include <string.h>
    #include <fstream.h>

    // this program is supposed to read a list of names from a file and then bubble sort them alphabeticaly
    // and allow for binary...
  21. Replies
    20
    Views
    2,102

    I changed the ctrcpy lines to strcmp and I...

    I changed the ctrcpy lines to strcmp and I complied. Now I have these errors.



    Info :sort and search hoskins beta v1.cpp: build due to .OBJ dependency sort and search hoskins beta v1.cpp
    Info...
  22. Replies
    19
    Views
    2,781

    thanks, the conversion error is gone. The other...

    thanks, the conversion error is gone. The other one is still there though.
  23. Replies
    20
    Views
    2,102

    Do you have an example of how to fix it?

    Do you have an example of how to fix it?
  24. Replies
    19
    Views
    2,781

    Do you have an example of the fix on that one?

    Do you have an example of the fix on that one?
  25. Replies
    20
    Views
    2,102

    So is that why my sort routine dosent actually...

    So is that why my sort routine dosent actually sort the names in the file?
Results 1 to 25 of 66
Page 1 of 3 1 2 3