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++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter4: Control Structures I (selection)
Section: Chapter Questions
Problem 14PE: The short-term, 0-24 hours, parking fee, F, at an international airport is given by the following...
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr