is greater than 12, output "I can finish a third of my homework." >If numMinutes >If numMinutes is greater than or equal to 22, output "I can finish half of my homework." If numMinutes is less than or equal to 2, output "I don't have time to do my homework."

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter1: Fundamentals Of C++ Programming
Section1.3: Preliminary Three: Software Development
Problem 7E: (Statistics) This is the formula for the standard normal deviate, z, used in statistical...
icon
Related questions
Question
Given integer numMinutes, write multiple if statements:
• If numMinutes is greater than 12, output "I can finish a third of my homework."
• If numMinutes is greater than or equal to 22, output "I can finish half of my homework."
If numMinutes is less than or equal to 2, output "I don't have time to do my homework."
End with a newline.
Ex: If the input is 25, then the output is:
I can finish a third of my homework.
I can finish half of my homework.
1 import java.util.Scanner;
HN3 & 567
2
3 public class RemainingTime {
4
6
8
9
10
11
12
13}
public static void main (String[] args) {
Scanner scnr = new Scanner(System.in);
int numMinutes;
}
numMinutes scnr.nextInt();
* Your code goes here
Transcribed Image Text:Given integer numMinutes, write multiple if statements: • If numMinutes is greater than 12, output "I can finish a third of my homework." • If numMinutes is greater than or equal to 22, output "I can finish half of my homework." If numMinutes is less than or equal to 2, output "I don't have time to do my homework." End with a newline. Ex: If the input is 25, then the output is: I can finish a third of my homework. I can finish half of my homework. 1 import java.util.Scanner; HN3 & 567 2 3 public class RemainingTime { 4 6 8 9 10 11 12 13} public static void main (String[] args) { Scanner scnr = new Scanner(System.in); int numMinutes; } numMinutes scnr.nextInt(); * Your code goes here
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr