using System; using System.Math; class test { public static void Main() { Console.Write("Enter any value: "); string s=Console.ReadLine(); double n = double.Parse(s); double r = Math.sqrt(n); Console.WriteLine(r); Console.ReadKey(); } }
I feel that everything is clear in this code, but this code gives compilation errors:
The using using namespace directive can only be applied to namespaces; "System.Math" is a type, not a namespace
How to use math functions? Where do we get a list of all the math functions available in the Math class?
Thanks.
c # mathematical-optimization
Gokul
source share