Answer :
import java.util.Scanner;public class WeightMeasure { public static void main(String[] args){ Scanner input = new Scanner(System.in);
System.out.print("Enter weight of object in newtons: "); double weight = input.nextDouble(); if (weight > 1000) { System.out.println("Object is too heavy"); }else if (weight < 10) { System.out.println("Object is too light"); } }}
System.out.print("Enter weight of object in newtons: "); double weight = input.nextDouble(); if (weight > 1000) { System.out.println("Object is too heavy"); }else if (weight < 10) { System.out.println("Object is too light"); } }}