fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. private static double DegreeToRadian(double angle)
  6. {
  7. return angle / (180.0 / Math.PI);
  8. }
  9.  
  10. static void Main(string[] args)
  11. {
  12. Console.WriteLine((75 * Math.Cos(DegreeToRadian(90))).ToString());
  13. }
  14. }
Success #stdin #stdout 0.03s 24144KB
stdin
Standard input is empty
stdout
4.59227382683391E-15