Can someone tell me what is wrong with my code?
I looked up other threads about this task but they all seem to have the same way of solving it.
package com.codegym.task.task04.task0409;
/*
Closest to 10
*/
public class Solution {
public static void main(String[] args) {
displayClosestToTen(-8, -11);
displayClosestToTen(-7, 14);
}
public static void displayClosestToTen(int a, int b) {
// write your code here
int c = 10 - abs(a);
int d = 10 - abs(b);
if(abs(c) <= abs(d)){
System.out.println(a);
}
else{
System.out.println(b);
}
}
public static int abs(int a) {
if (a < 0) {
return -a;
} else {
return a;
}
}
}