Search:

Type: Posts; User: john5754

Search: Search took 0.00 seconds.

  1. Replies
    18
    Views
    7,322

    program that finds antiderivative

    Has any one here ever written a program that finds the derivative or anti derivative?
    Because I'm trying to write a program that finds the derivative or antiderivative but I don't know where to...
  2. Replies
    3
    Views
    4,887

    Newbie needs help

    Is there a way to keep an output in fraction form in stead of decimal form? and What does pass by reference mean? Also when you are using functions, when do you put void in front of the function and...
  3. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    #include #include using...

    #include <iostream>
    #include <iomanip>
    using namespace std;



    int main()
    {
    const int j=99;
    int height=3,width=5,n,m,i,jimmy[j];
  4. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    Here is what I got, It seems to work when I run...

    Here is what I got, It seems to work when I run it. See any problems?



    # define width 5
    # define height 3

    int jimmy[Height * Width]
    int n,m;
    int main()
  5. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    what do you mean by cast

    what do you mean by cast
  6. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    Here is what the two dimensional array code looks...

    Here is what the two dimensional array code looks like, I need to find out what goes in the for loops in the above code to turn it in to a one dimensional array.


    int val[height][width]
    int n,m;...
  7. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    Its just a problem for school I need to find out...

    Its just a problem for school I need to find out how to take a two dimensional array and turn it in to a one dimensional array
  8. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    Here is what I have I dont know what to put in...

    Here is what I have I dont know what to put in the for loops


    int val[height][width]
    int n,m;

    int main()
    {

    for( )
  9. Thread: arrays

    by john5754
    Replies
    17
    Views
    1,906

    arrays

    How do I turn a two dimensional array into a one dimensional array?
  10. Its still the same thing on page 1

    Its still the same thing on page 1
  11. I'm still lost I dont know what to type

    I'm still lost I dont know what to type
  12. I still don't know what to do. How should I...

    I still don't know what to do. How should I change my code to to make it work?
  13. I don't know how to do that what does the syntax...

    I don't know how to do that what does the syntax look like?
  14. We haven't studied vectors, so we can't use that,...

    We haven't studied vectors, so we can't use that, we can use loops
  15. Yeah I'm having a problem with the array part on...

    Yeah I'm having a problem with the array part on how to delete and add employess. I don't know how to do it. I don't know how I would exit the menu for 4. I'm totally lost
  16. #include #include using...

    #include <iostream>
    #include <iomanip>
    using namespace std;

    class Employee
    {
    private:
    double id;
    double pay;
    double hours;
  17. I'm still a novice I dont know how to use coeds...

    I'm still a novice I dont know how to use coeds or vectors, I'm thinking of using if loops?
  18. I need help on this problem using classes and arrays

    a. Construct a class definition that can be used to represent an employee of a company. Each employee is defined by an integer ID number, a floating-point pay rate, and the maximum number of hours...
Results 1 to 18 of 18