Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Напишите а:");
- float a = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Напишите b:");
- int b = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Напишите n:");
- int n = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Напишите P:");
- int P = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Берем метод правых прямоугольников и функцию x^2");
- double S;
- float h = (b-a)/n;
- float sum =0;
- for (float i = a; i < b; )
- {
- sum += h*( i * i);
- i += h;
- }
- Console.WriteLine(sum);
- Console.WriteLine("Получившиеся наращенная сумма: ");
- S = ((P) * (Math.Exp(sum)));
- Console.WriteLine(S);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement