subject

3.16.1: Exception handling. input20 Type the program's output

import java. util. Scanner;

public class HeartRateExceptHandling {
public static void main(String[] args) {
Scanner scnr = new Scanner(System. in);
int userAge;
int avgMaxHeartRate;

try {
userAge = scnr. nextInt();

if (userAge < 0) {
throw new Exception("Invalid age");
}

// Source: https://www. heart. org/en/healthy-living/fitness
avgMaxHeartRate = 220 - userAge;

System. out. println("Avg: " + avgMaxHeartRate);
}
catch (Exception excpt) {
System. out. println("Error: " + excpt. getMessage());
}
}
}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 16:00
Speed is how fast an object moves a certain distance within a length of time. how is speed calculated? a) distance/time b) time/distance c) velocity/time d) distance x time
Answers: 1
question
Computers and Technology, 23.06.2019 04:10
2pointswho was mikhail gorbachev? oa. a russian leader who opposed a coupob. a polish leader who founded the labor union "solidarityoc. a soviet leader who called for a closer relationship with the unitedstates, economic reform, and a more open societyd. a soviet leader who called for more oppression in the soviet union
Answers: 3
question
Computers and Technology, 23.06.2019 04:20
Which network media uses different regions of the electromagnetic spectrum to transmit signals through air? uses different regions of the electromagnetic spectrum to transmit signals through air.
Answers: 2
question
Computers and Technology, 24.06.2019 13:00
Why should you evaluate trends when thinking about a career path?
Answers: 1
You know the right answer?
3.16.1: Exception handling. input20 Type the program's output

import java. util. Scanne...
Questions
question
Mathematics, 07.07.2019 04:30
question
Biology, 07.07.2019 04:30
question
Mathematics, 07.07.2019 04:30
question
Mathematics, 07.07.2019 04:30