Esempio n. 1
0
        private void buttonFormOddNumbersLot_Click(object sender, EventArgs e)
        {
            //ClassFormer.FormOddNumbersLot(Y); должен обработать Y из предыдущего шага - неверный шаг, создать новый
            HashSet <int> Y1 = ClassFormer.FormOddNumbersLot(Y);

            textBoxOddNumbersLot.Text = ClassFormer.Print(Y1);
            //textBoxOddNumbersLot.Text = ClassFormer.Print(Y); // должен получить обработанное значение и напечатать - неверно
        }
Esempio n. 2
0
 private void buttonFormLot_Click(object sender, EventArgs e)
 {
     X1 = ClassFormer.Get(textBoxFirstLot.Text);
     X2 = ClassFormer.Get(textBoxSecondLot.Text);
     X3 = ClassFormer.Get(textBoxThirdLot.Text);
     Y  = ClassFormer.FormLot(X1, X2, X3);
     textBoxYLot.Text = ClassFormer.Print(Y);
 }
Esempio n. 3
0
 private void buttonFillX2Lot_Click(object sender, EventArgs e)
 {
     X2 = ClassFormer.FillRandom();
     textBoxSecondLot.Text = ClassFormer.Print(X2);
 }
Esempio n. 4
0
 private void buttonFillX3Lot_Click(object sender, EventArgs e)
 {
     X3 = ClassFormer.FillRandom();
     textBoxThirdLot.Text = ClassFormer.Print(X3);
 }
Esempio n. 5
0
 private void buttonFillX1Lot_Click(object sender, EventArgs e)
 {
     X1 = ClassFormer.FillRandom();
     textBoxFirstLot.Text = ClassFormer.Print(X1);
 }