Question: CHALLENGE ACTIVITY 3.15.1 Floating-point comparison: Print Equal or Not equal. u Write an expression that will cause the following code to print 'Equal' if the

CHALLENGE ACTIVITY 3.15.1 Floating-point comparison: Print Equal or Not equal. u Write an expression that will cause the following code to print 'Equal' if the value of sensorReading is 'close enough to targetValue Otherwise, print "Not equal". Ex If targetValue is 0.3333 and sensorReading is (1.0/3.0), output is: Equal test ge All testy PS 1 1 import java.lang. Math; 2 import java.util.Scanner; 3 public class Sensor Threshold { 4 public static void main(String[] args) { S Scanner scnr = new Scanner(System.in); 6 double targetValue; 7 double sensor Reading; 8 9 targetValue = sehr.nextDoubleO; 10 sensorReading = scnr.nextDoubleO; 11 12 if (* Your solution goes here *{ 13 System.out.println("Equal"); 14 } 15 else { 16 System.out.println("Not equal"); 17 } 18 } Run Feedback
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
