Создать конструктор класса и метод для вычисления - C#

Узнай цену своей работы

Формулировка задачи:

Здравствуйте, составил программу по условию, но только с одним классом, не знаю как сделать конструктор класс, т.е. два класса должно быть насколько я понимаю..
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Seize
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. //Где a-сторона, b-высота, c-объем.
  12. double a1 = 2;
  13. double a2 = 1;
  14. int b1 = 1;
  15. int b2 = 3;
  16. var c1 = 1.0 / 3 * a1 * b1;
  17. var c2 = 1.0 / 3 * a2 * b2;
  18. Console.WriteLine("The side of the first pyramid: " + a1);
  19. Console.WriteLine("The side of the second pyramid: " + a2);
  20. Console.WriteLine("===============================================");
  21. Console.WriteLine("The height of the first pyramid: " + b1);
  22. Console.WriteLine("The height of the second pyramid: " + b2);
  23. Console.WriteLine("===============================================");
  24. Console.WriteLine("The volume of the first pyramid is: " + String.Format("{0:0.00}", c1));
  25. Console.WriteLine("The volume of the second pyramid is :" + c2);
  26. Console.Read();
  27. }
  28. }
  29. }

Решение задачи: «Создать конструктор класса и метод для вычисления»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Seize
  7. {
  8.     class Seize
  9.     {
  10.         double a1, a2, b1, b2;
  11.         public Seize(double A1, double A2, double B1, double B2)
  12.         {
  13.             a1 = A1;
  14.             a2 = A2;
  15.             b1 = B1;
  16.             b2 = B2;
  17.  
  18.         }
  19.         public double Dist()
  20.         {
  21.             return (1.0 / 3 * b1 * a1);
  22.             return (1.0 / 3 * b2 * a2);
  23.         }
  24.     }
  25.  
  26.     class Program
  27.     {
  28.         static void Main(string[] args)
  29.         {
  30.             //Где a-сторона, b-высота, c-объем.
  31.             double a1 = 2;
  32.             double a2 = 1;
  33.             int b1 = 1;
  34.             int b2 = 3;
  35.             var c1 = 1.0 / 3 * a1 * b1;
  36.             var c2 = 1.0 / 3 * a2 * b2;
  37.  
  38.             Console.WriteLine("The side of the first pyramid: " + a1);
  39.             Console.WriteLine("The side of the second pyramid: " + a2);
  40.             Console.WriteLine("===============================================");
  41.             Console.WriteLine("The height of the first pyramid: " + b1);
  42.             Console.WriteLine("The height of the second pyramid: " + b2);
  43.             Console.WriteLine("===============================================");
  44.             Console.WriteLine("The volume of the first pyramid is: " + String.Format("{0:0.00}", c1));
  45.             Console.WriteLine("The volume of the second pyramid is :" + c2);
  46.             Console.Read();
  47.         }
  48.     }
  49. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

10   голосов , оценка 3.8 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы