zeqd
zeqd
CC#
Created by zeqd on 10/13/2023 in #help
❔ XML documentation
Hi guys. Who can check for the correctness of writing XML documentation (there are a couple of lines of code) /// <summary>Вычисляет будущую стоимость инвестиции на основе введенных данных.</summary> /// <param name="userInput">Строка ввода, содержащая сумму, процентную ставку и срок инвестиции.</param> /// <returns>Накопившаяся сумма на момент окончания вклада.</returns> public static double Calculate(string userInput) { string[] inputParts = userInput.Split(' '); double.TryParse(inputParts[0], out var Summ); double.TryParse(inputParts[1], out var Percent); int.TryParse(inputParts[2], out var TermMonth); return Summ * Math.Pow((1 + ((Percent / 100) / 12)), TermMonth); }
14 replies