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

 

gaurav.gupta@mq.edu.au conditions > median
prev  |  next  |  chance

Define a function that when passed three integers, returns the median value. That is the value that sits in the middle when the three are sorting in ascending (or descending) order.


median(10, 10, 10) → 10
median(10, 20, 10) → 10
median(20, 10, 10) → 10

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

int median(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

Difficulty: 4 Post-solution available

Copyright Nick Parlante 2017 - privacy