Advertisement
Andites

lb2 смирнова

Nov 29th, 2023
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Напишите а:");
  10. float a = Convert.ToInt32(Console.ReadLine());
  11. Console.WriteLine("Напишите b:");
  12. int b = Convert.ToInt32(Console.ReadLine());
  13. Console.WriteLine("Напишите n:");
  14. int n = Convert.ToInt32(Console.ReadLine());
  15. Console.WriteLine("Напишите P:");
  16. int P = Convert.ToInt32(Console.ReadLine());
  17. Console.WriteLine("Берем метод правых прямоугольников и функцию x^2");
  18. double S;
  19. float h = (b-a)/n;
  20. float sum =0;
  21. for (float i = a; i < b; )
  22. {
  23. sum += h*( i * i);
  24. i += h;
  25. }
  26. Console.WriteLine(sum);
  27. Console.WriteLine("Получившиеся наращенная сумма: ");
  28. S = ((P) * (Math.Exp(sum)));
  29. Console.WriteLine(S);
  30. }
  31. }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement