Java bootcamp · Lab 32

Median of three

easyArrays10 minLesson: Arrays

Read the question, write Java on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Read three ints; print median.

Examples

Example 1
Input
3 1 2
Output
2
Hint
  1. Arrays.sort on a 3-element array.
Show correct code

Peek only after you have tried. You can still Check your own version.

import java.util.Arrays;
import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    int[] v = {in.nextInt(), in.nextInt(), in.nextInt()};
    Arrays.sort(v);
    System.out.println(v[1]);
  }
}
Main.javaJava 21 · javac · Ctrl + Enter runs
ResultIdle
Run to see output. Check grades the tests.