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

 

abraskin@mbusd.org 2015_problemset_01 > remainGreaterQuot
prev  |  next  |  chance

Given integer a as the numerator and integer b as the denominator, return true if the remainder of a divided by b is greater than a divided by b. Also, return false for divide by zero errors.


remainGreaterQuot(10, 5) → false
remainGreaterQuot(5, 10) → true
remainGreaterQuot(0, 0) → false

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

public boolean remainGreaterQuot(int a, int b){ }

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: 100

Copyright Nick Parlante 2017 - privacy