Java tutorial
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); public class Main { public static float acos(float x) { return (float) Math.acos(x); } }