Now I have the equation working .... would like to give both decimal and fraction.

import java.util.Scanner;

    public class LinearSlopeFinder {
        public static void main(String[]args){
            int x1, y1, x2, y2, n1, equation ;
            double slope;
            Scanner myScanner = new Scanner(System.in);

            System.out.print("    What is the first set of cordinants? ... ");
            String coordinate1 = myScanner.nextLine();
            String coordinates[] = coordinate1.split(",");
            x1 = Integer.parseInt(coordinates[0]);
            y1 = Integer.parseInt(coordinates[1]);

            System.out.print("    What is the second set of cordinants? ... ");
            String coordinate2 = myScanner.nextLine();
            String coordinates1[] = coordinate2.split(",");
            x2 = Integer.parseInt(coordinates1[0]);
            y2 = Integer.parseInt(coordinates1[1]);

            slope = (x1-x2)/(y1-y2);

            System.out.println("your cordinants are " + coordinate1 + " and "+ coordinate2);
            System.out.println("the slope of your line is " + slope +"x");

        }
    }

output: What is the first set of cordinants? ... 1,7 What is the second set of cordinants? ... 2,14 your cordinants are 1,7 and 2,14 the slope of your line is 0.14285714285714285x

link|improve this question

60% accept rate
Do you have a question? – Jean-François Corbett Oct 21 '11 at 7:07
feedback

2 Answers

You could use Fraction.java. (More info at http://www.merriampark.com/fractions.htm)

link|improve this answer
feedback

Since you know the slope is a ratio of two numbers x1-x2 and y1-y2, you could find the highest common factor of each and divide both by this. The simplest way to find it would be a brute force scan ofr numbers.

link|improve this answer
1  
Your best best would be to implement a greatest common divisor algorithm - easiest is Euclid's Algorithm[1]. [1]: en.wikipedia.org/wiki/Euclid%27s_algorithm – Farthingworth Oct 21 '11 at 7:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.