Advertisement
JohnathanMayhem

Hype

Nov 10th, 2022
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System.Collections.Generic;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5.     public class Hyperbole : Func
  6.     {
  7.  
  8.         public Hyperbole(double delim, double cons)
  9.         {
  10.             Polynome = new Dictionary<double, double>();
  11.             Polynome.Add(-1, delim);
  12.             Polynome.Add(0, cons);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement