Jump to content
  • Welcome!

    Register and log in easily with Twitter or Google accounts!

    Or simply create a new Huddle account. 

    Members receive fewer ads , access our dark theme, and the ability to join the discussion!

     

Any Programmers out there want to help me with a program for school?


The Saltman

Recommended Posts

its in java and Im having issues getting it to print.

Here is the Question:

Design a class named LinearEquation for a 2 X 2 system of linear equations:

ax + by = e x = (ed – bf)/(ad – bc)

cx + dy = f y = (af – ec)/(ad – bc)

The class contains:

 Private data fields a, b, c, d, e, f.

 A constructor with the arguments for a, b, c, d, e, f.

 Six get methods for a, b, c, d, e, and f.

 A method named isSolvable() that returns true if ad – bc is not 0.

 Methods getX() and getY() that retrun the solution for the equation.

Here is what I got so far the thing is the teacher left out this part of the question on purpose so the user does not have to input anything but im still confused on how to execute the file:

Draw the UML diagram for the class. Implement the class. Write a test program that prompts the user to enter a, b, c, d, e, and f and displays the result. If ad – bc is 0, report that “The equation has no solution.”

so here is what I got so far. im having issues with where to put the main method and how to print it:

public class LinearEquation {

// declare the six coefficient

private static int a;

private static int b;

private static int c;

private static int d;

private static int e;

private static int f;

// a constructor to initial the coefficient

LinearEquation(int inputA, int inputB, int inputC, int inputD, int inputE, int inputF){

a = inputA;

b = inputB;

c = inputC;

d = inputD;

e = inputE;

f = inputF;

}

// method isSolvable to show whether the equations has solution or not

static int isSolvable(){

if(((a*d) - (b*c)) == 0)

return 0;

else

return 1;

}

// method getX() to calculate the solution of x

static double getX(){

return (((e*d) - (b*f))/((a*d) - (b*c)));

}

// method getY() to calculate the solution of y

static double getY(){

return (((a*f) - (e*c))/((a*d) - (b*c)));

}

Link to comment
Share on other sites

Don't you just need 1 more method (public static void main ) that will prompt the user for the 6 variables and then call the methods, and print out the result ?

main can go anywhere. Top, middle bottom. I like it on the bottom, with my constructors on top.

Link to comment
Share on other sites

Use the Scanner class to get input....

public static void main(String[] args) {

System.out.println("The super insano calculator");

Scanner reader = new Scanner(System.in);

System.out.println("Enter the first number");

//get user input for a

int a=reader.nextInt();

// yadda yadda

//repeat for other variables and then call your contructor.

// Then call your methods

// then print

}

Link to comment
Share on other sites

Just make up some terms in the main method.... and then call your constructor, then call methods. Then print. then profit!!

public static void main(String[] args) {

System.out.println("The super insano calculator");

int aa =3;

int bb = 6;

.

.

int ff=8;

LinearEquation myLinearEquation = new LinearEquation(aa, bb, cc, dd, ee, ff);

int solve = myLinearEquation.isSolvable();

double x = myLinearEquation.getx();

double y = myLinearEquation.gety();

// then print .......

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.


  • PMH4OWPW7JD2TDGWZKTOYL2T3E.jpg

  • Topics

  • Posts

    • He's handing off play calling duties to fuging Brad Idzik as well so, either that mouth breather can run the playbook and Canales can grow as an all around head coach or it will be a horrible decision and both of them and BY can screw off. I'm fine with that as long as it isn't just another excuse for BY to get another year with another coach worthy of working around his limitations as a qb. 
    • Not only for Andersen but the whole team, having not beat the Habs this season before tonite.  Shows them that they aren't jinxed.
    • I understand why people say things like it could be worse in relation to Tepper but it just doesn't jive for me. Are the optics bad? Yes. Would I want her to be the owner of my team? No. But I mean she's only been owner for a year and the Colts overall are a better run organization. As far as I know they've also never had the distinction of having the worst win percentage in all of professional sports either. Tepper has owned this team for 8 years and about the only thing that has been consistent has been the ability to continue to find different ways to achieve new lows. Even now people are saying things are different yada yada but we said these same things at certain points under Rhule Fitterer and Reich. I'm going to wait to see how the rubber meets the road this upcoming season before I make any strong conclusions about anything in relation to the longevity under this franchise going forward.
×
×
  • Create New...