mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
18 lines
475 B
Java
18 lines
475 B
Java
/* Lesson 4 Coding Activity Question 2 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class U5_L4_Activity_Two {
|
|
|
|
public static double distance(int x1, int y1, int x2, int y2) {
|
|
return Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2));
|
|
}
|
|
|
|
// You can uncomment and add to the main method to test your code
|
|
// You will need to remove/comment out this method before checking your code for a score
|
|
/*
|
|
public static void main(String[] args){
|
|
|
|
}
|
|
*/
|
|
}
|