Problem with array manipulation

Discussion in 'Programming' started by channel, Apr 2, 2009.

  1. channel

    channel New Member

    Joined:
    Mar 30, 2009
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    student
    Location:
    Botswana
    I'm trying to solve a cubic equation. A cubic equation has three solutions for x and I want the values of x to be stored in an array int_array. The problem that I'm having is that I'm getting double results for each x. I want to access the first value of x by writing the following: int_array[0], the second value by int_array[1] and the third value by int_array[2]. The other problem is that if I try to access int_array[1], I get [3,0,0], the same result that I get when I try to access int_array[0] and int_array[2].

    Here is the code that I wrote to solve the problem:

    Code:
    public class Equation {
    
    public void doCalculations(int a, int b, int c, int d){
    int j;
    for (int i=-10;i<=10;i++){
    if((a*(i*i*i)+ b*(i*i)+ c*(i)+ d)==0){
    j=i;
    int int_array[] = new int[3];
    for(int k=0;k<int_array.length;k++)
    int_array[k]=j;
    
    System.out.println("The value of X1 is :" + int_array[0]);
    System.out.println("The value of X2 is :"+ int_array[1]);
    System.out.println("The value of X3 is :"+ int_array[2]);
    
    }
    }
    }
    
    public static void main(String[]args){
    Equation equation = new Equation();
    equation.doCalculations(1, -6, 11, -6);
    }
    
    }

    Here are sample results that I get after running the program:

    The value of X2 is :1
    The value of X3 is :1
    The value of X1 is :2
    The value of X2 is :2
    The value of X3 is :2
    The value of X1 is :3
    The value of X2 is :3
    The value of X3 is :3

    May anyone out there help me, I'm stuck and I dont know where to begin now. I also accept direct postings to channel.zhou@yahoo.com. Thank you in advance.​
     
    Last edited by a moderator: Apr 2, 2009
  2. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    Please use code blocks when posting code.

    What do you think the output should be and why (i.e. what do you think you are displaying)?

    What are you trying to do with this code? :
    Code:
    for(int k=0;k<int_array.length;k++)
    int_array[k]=j;
    
     
  3. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    You seem to be recreating the int array every time the result of the equation is zero, then assigning the same value to each of the three locations. So probably what you want to do is to create the array outside the loop and set j=0, then inside the loop, when the result is zero, assign i to int_array[j++], and maybe use a safety cutout in case j exceeds 2 because due to integer arithmetic that could well happen (why aren't you using double variables?)
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice