fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. double a = 3.6;
  9. double z = 1 - (1 / (double) 4) * Math.Pow(Math.Sin(2 * a),2) + Math.Cos(2 * a);
  10. double z1 = Math.Pow(Math.Cos(a),2) + Math.Pow(Math.Cos(a), 4);
  11.  
  12. Console.WriteLine(z);
  13. Console.WriteLine(z1);
  14. }
  15. }
Success #stdin #stdout 0.04s 23920KB
stdin
Standard input is empty
stdout
1.45087414500554
1.45087414500554