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