Question: Integer healthPoints is read from input. Write multiple if statements: If healthPoints is greater than or equal to 1 3 , then output I can

Integer healthPoints is read from input. Write multiple if statements:
If healthPoints is greater than or equal to 13, then output "I can go on a walk."
If healthPoints is greater than or equal to 25, then output "I can run a mile."
If healthPoints is less than or equal to 4, then output "I am tired."
End each output with a newline.
import java.util.Scanner;
public class RemainingEnergy {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int healthPoints;
healthPoints = scnr.nextInt();
/* Your code goes here */
}
}

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!