using System; class Trigon { static void Main() { for (double theta = 0.1; theta <= 1.0; theta = theta + 0.1) { Console.WriteLine("Синус {0:F2} равен {1:F2}\t Косинус {0:F2} равен {2:F2} Тангенс {0:F2} равен {3:F2}", theta, Math.Sin(theta), Math.Cos(theta), Math.Tan(theta)); } } } Hello, dear. With the help of the answers from the previous question I improved my code a little. :) Removed unnecessary words and Console.WriteLine() And no new for() ! : D I got nice columns. But again there was a problem (I know I’m tired, but I don’t have anyone else to contact. :( Do you think I’m stupid, you can write links to the right material I’ll read !!!). In the code I use \t (like tab). On {1:F2}\t everything is beautiful and normal, but when I write \t after {2:F2} distance between the value of "Cosine" and the word "Tangent" is 2 times larger (it seems, this is about). the distance and between the lines. What is the problem (why does it bother me so much? I'm a Perfectionist!: D)? You could add spaces manually, but I think that this also needs to be done erit car xD Or maybe there are other special commands to put spaces. (Example: \p5 (5 probelov.Znachenie it is possible to change))?