You are driving a little too fast, and a police officer stops you. Write code to compute the result, encoded as an int value: 0=no ticket, 1=small ticket, 2=big ticket. If speed is 60 or less, the result is 0. If speed is between 61 and 80 inclusive, the result is 1. If speed is 81 or more, the result is 2. Unless it is your birthday -- on that day, your speed can be 5 higher in all cases.

caughtSpeeding(60, false) → 0
caughtSpeeding(65, false) → 1
caughtSpeeding(65, true) → 0

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
public int caughtSpeeding(int speed, boolean isBirthday) {
  int result=0;
  int bd=0;
  if (isBirthday){
    bd=5;
  }
  if (speed<=60+bd){
    result=0;
  } else if (speed>61+bd && speed<=80+bd){
    result=1;
  } else if (speed>=81+bd){
    result=2;
  }
  return result;
}

Keresés

Ajánló