How to use acos() function to get the arc cosine value of N in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Math.Acos(0) = {0}", Math.Acos(0));
            Console.WriteLine("Math.Acos(-1) = {0}", Math.Acos(-1));
            Console.WriteLine("Math.Acos(1) = {0}", Math.Acos(1));
            Console.WriteLine("Math.Acos(0.5) = {0}", Math.Acos(0.5));
        }
    }
}


/*
run:

Math.Acos(0) = 1.5707963267949
Math.Acos(-1) = 3.14159265358979
Math.Acos(1) = 0
Math.Acos(0.5) = 1.0471975511966

*/

 



answered Mar 31, 2016 by avibootz
edited Mar 31, 2016 by avibootz

Related questions

1 answer 166 views
1 answer 214 views
1 answer 194 views
2 answers 244 views
2 answers 251 views
...