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

    • I don't really like the phrase, "moral victory". I get what's meant by it, but does that mean that if you do the opposite (play poorly but win) it's an immoral victory? 🤔
    • I blame Evero because he is overrated. Vance Joseph created the defense in Denver that he took credit for. Wilks ran the ball down his throat and Darnold had a 103.8 rtg.  Last year we were decent in yards allowed, and horrible in everything else. Only reason? We kept giving up good field position.  He's had his choice of players to bring in since his scheme is so "complicated." Maybe he should stop trying to be so fancy like running Cover 4 on 3rd and 1 earlier and focus on fundamentals like tackling. These years of Eric Washington, Phil Snow, and Evero must have gotten you confused on what a real defense looked like. Go back and watch the McDermott and Wilks years- this dude is sofT.
    • I tried to make it a point in the opening post that I don't think the offense is a finished product. I think we still need more talent at WR, better play calling, catch more consistently, elimate ridiculous penalties,  and be more consistency in scoring points. I'm just saying, they look markedly better than last year imo. They have scored 20 or more in 6 games and 30 or more in 2 games. And that's particularly notable considering they only mustered 10 points and 3 points in first 2 games of this year and they got blanked on 0 points two games in a row to wrap up last season . I'd say that's a market improvement.  I'm not crowning them and saying we have a top 10 offense or anything.  I'm comparing them to themselves in recent history. 
×
×
  • Create New...