class testMath1{ public static void main(String args[]){ for (int i = -5 ; i < 5 ; i++){ System.out.println(i + "の絶対値は" + Math.abs(i) + "です"); } } }