Question: 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

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 9 1 import java.lang. Math; 2 import java.util.Scanner; 3 public class SensorThreshold { 4 public static void main(String[] args) { 5 Scanner scnr = new Scanner(System.in); 6 double targetValue; 7 double sensor Reading; 8 targetValue - scnr.nextDouble(); 10 sensorReading = scnr.nextDouble(); 11 12 if (* Your solution goes here */) { 13 System.out.println("Equal"); 14 } 15 else { 16 System.out.println("Not equal"); 17 18 } 19 }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
