コード例 #1
0
        static void Main(string[] args)
        {
            TArProgression pr1 = new TArProgression();

            pr1.EnterPrint(6);

            Console.WriteLine(pr1.IndexOf(3));
        }
コード例 #2
0
 public TArProgression(TArProgression t)
 {
     this.first_el = t.first_el;
     this.d        = t.d;
 }