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

 

logic_blackJack3


Given three integers, a b c, return whichever value is nearest to 21 without going over. Return zero if they are all over 21.


logic_blackJack3(19, 20, 21) → 21
logic_blackJack3(20, 21, 20) → 21
logic_blackJack3(19, 21, 20) → 21

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

public int logic_blackJack3(int a, int b, int c) { }

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

Post-solution available

Copyright Nick Parlante 2017 - privacy