Java bootcamp · Lab 31

Absolute difference

easyMath8 minLesson: Math

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

QuestionHint and solution stay closed until you open them

Read a b; print Math.abs(a-b).

Examples

Example 1
Input
10 3
Output
7
Hint
  1. Math.abs
Show correct code

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

import java.util.Scanner;

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