id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

srp4379@lausd.net 1-logicbasics > isDivisibleBy3_AND_5
prev  |  next  |  chance

public boolean isDivisibleBy3_AND_5(int n)

Given a number (an integer), return true if it is divisible by 3 AND divisible by 5, false otherwise.


public boolean isDivisibleBy3_AND_5(int n) {
  boolean divBy3 = false;
  if (n % 3 == 0) {
    divBy3 = true;
  }

  boolean divBy5 = false;
  if (n % 5 == 0) {
    divBy5 = true;
  }

  boolean divBy3and5 = false;
  if (divBy3 && divBy5) {
    divBy3and5 = true;
  }
  return divBy3and5;
}

isDivisibleBy3_AND_5(9) → false
isDivisibleBy3_AND_5(15) → true
isDivisibleBy3_AND_5(25) → false

...Save, Compile, Run (ctrl-enter)

public boolean isDivisibleBy3_AND_5(int n) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 1

Copyright Nick Parlante 2017 - privacy