using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
for (double x = xMin; x < xMax; x = x + step)
var z = Math.Tan(b * x * x);
y = a * Math.Pow(Math.Cos(x), 2) + b * Math.Sin(z * x);
y = Math.Atan(a * x + z) + Math.Pow(Math.Sin(b * x), 2);
y = Math.Log(a * x - b) + z * z;
Console.WriteLine(Math.Round(x, 1) + ":\t" + y);