
Анастасия
5 год назад
Пожалуйста посчитайте!!! написать програмку в C#6 задание

ОТВЕТЫ

Allen Clement
Oct 24, 2020
Разбирайся.using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp1{class Program{const double stepSize = 0.32;const double beginValue = 0.1;const double endValue = 6.51;const double alpha = 0.28;static double function(double x){double numerator;double denumerator;double fraction;numerator = Math.Cos(x - alpha);denumerator = Math.Sqrt(x);fraction = numerator / denumerator;return fraction;}static void Main(string[] args){String outValue;for (double x = beginValue; x <= endValue; x += stepSize){outValue = "X: " + x + " Y: " + function(x);Console.WriteLine(outValue);}while (true) ;}}}
105
Смежные вопросы: