English

The coordinates of two points A and B on a straight line are given as (x1, y1) and (x2, y2). Write a program to calculate the slope (m) of the line by using formula: - Computer Applications

Advertisements
Advertisements

Question

The coordinates of two points A and B on a straight line are given as (x1, y1) and (x2, y2). Write a program to calculate the slope (m) of the line by using formula: 

Slope = `((y2 − y1))/((x2 − x1))`

Take the coordinates (x1, y1) and (x2, y2) as input. 

Answer in Brief

Solution

import java.util.*;
public class U5_Q8
{public static void main(String args[])
{Scanner obj = new Scanner(System.in);
double y2, y1, x2, x1, slope;
System.out.println(“Enter the values of the co-ordinates”);
System.out.print(“Enter y2: ”);
y2 = obj.nextInt();
System.out.print(“Enter y1: ”);
y1 = obj.nextInt();
System.out.print(“Enter x2: ”);
x2 = obj.nextInt();
System.out.print(“Enter x1: ");
x1 = obj.nextInt();
slope = (y2 − y1) / (x2 − x1);
System.out.println(“Slope = " + slope);
}
}
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.06: Input in Java - EXERCISES [Page 67]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.06 Input in Java
EXERCISES | Q V. 8. | Page 67
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×