Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- System.out.println(Math.abs(-2.33)); // выведет 2.33
- System.out.println(Math.round(Math.PI)); // выведет 3
- System.out.println(Math.round(9.5)); // выведет 10
- System.out.println(Math.round(9.5-0.001)); // выведет 9
- System.out.println(Math.ceil(9.4)); // выведет 10.0
- double c = Math.sqrt(3*3 + 4*4);
- System.out.println(c); // выведет гипотенузу треугольника с катетами 3 и 4
- double s1 = Math.cos(Math.toRadians(60));
- System.out.println(s1); // выведет косинус угла в 60 градусов
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement