APCSA/U2/L8/U2_L8_Activity_Three.java
2026-03-09 21:55:57 -07:00

14 lines
411 B
Java
Executable file

/* Lesson 8 Coding Activity Question 3 */
import java.util.Scanner;
public class U2_L8_Activity_Three {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter two doubles:");
Double d1 = scan.nextDouble();
Double d2 = scan.nextDouble();
System.out.println("Difference: " + Math.abs(Math.round(d1 - d2)));
}
}