Java > Warmup-1 > in3050 (CodingBat Solution)

Problem:

Given 2 int values, return true if they are both in the range 30..40 inclusive, or they are both in the range 40..50 inclusive.

in3050(30, 31) → true
in3050(30, 41) → false
in3050(40, 50) → true


Solution:

public boolean in3050(int a, int b) {
  if ((a >= 30 && a <= 40) && (b >= 30 && b <= 40))
    return true;
  else if ((a >= 40 && a <= 50) && (b >= 40 && b <= 50))
    return true;
  else
    return false;
}


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact