Question: If integer objectMass is: 0 , output None. 5 0 0 , output Half of a kilogram. Otherwise, output Other mass. End with a newline.

If integer objectMass is:
0, output "None".
500, output "Half of a kilogram".
Otherwise, output "Other mass". End with a newline.
Click here for examples
Ex 1: If the input is 0, then the output is:
None
Ex 2: If the input is 248, then the output is:
Other import java.util.Scanner;
public class MultIfElse {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int objectMass;
objectMass = scnr.nextInt();
/* Your code goes here */
}
}mass

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!