Advertisement
VladikOtez

task Sergey

Jan 7th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.30 KB | None | 0 0
  1.  
  2.             Random y = new Random();
  3.             int a1 = y.Next(0, 101);
  4.             string a = a1.ToString();
  5.  
  6.             Random z = new Random();
  7.             int b1 = z.Next(0, 101);
  8.             string b = b1.ToString();
  9.  
  10.             textBox1.Text = a;
  11.             Random rt1 = new Random();
  12.             int rt = rt1.Next(1, 4);
  13.             if (rt == 1) textBox1.Text = textBox1.Text + "+";
  14.             if (rt == 2) textBox1.Text = textBox1.Text + "-";
  15.             if (rt == 3) textBox1.Text = textBox1.Text + "*";
  16.            
  17.             textBox1.Text = textBox1.Text + b1;
  18.  
  19.  
  20.  
  21.  
  22.            
  23.  
  24.             Random r1 = new Random();
  25.             int r11 = r1.Next(0, 10001);
  26.             string r111 = r11.ToString();
  27.             radioButton1.Text = r111;
  28.  
  29.  
  30.             Random r2 = new Random();
  31.             int r22 = r2.Next(0, 10001);
  32.             string r222 = r22.ToString();
  33.             radioButton2.Text = r222;
  34.  
  35.             Random r3 = new Random();
  36.             int r33 = r3.Next(0, 10001);
  37.             string r333 = r33.ToString();
  38.             radioButton3.Text = r333;
  39.  
  40.             int abp = a1 + b1;
  41.             string ab1 = abp.ToString();
  42.  
  43.             int abm = a1 - b1;
  44.             string ab2 = abm.ToString();
  45.  
  46.             int abu = (a1 * b1);
  47.             string ab3 = abu.ToString();
  48.  
  49.            
  50.  
  51.  
  52.  
  53.             Random rand = new Random();
  54.             int rand1 = rand.Next(1, 4);
  55.             if ((rand1 == 1) && (rt == 1)) radioButton1.Text = ab1;
  56.             if ((rand1 == 1) && (rt == 2)) radioButton1.Text = ab2;
  57.             if ((rand1 == 1) && (rt == 3)) radioButton1.Text = ab3;
  58.            
  59.  
  60.             if ((rand1 == 2) && (rt == 1)) radioButton2.Text = ab1;
  61.             if ((rand1 == 2) && (rt == 2)) radioButton2.Text = ab2;
  62.             if ((rand1 == 2) && (rt == 3)) radioButton2.Text = ab3;
  63.            
  64.  
  65.  
  66.             if ((rand1 == 3) && (rt == 1)) radioButton3.Text = ab1;
  67.             if ((rand1 == 3) && (rt == 2)) radioButton3.Text = ab2;
  68.             if ((rand1 == 3) && (rt == 3)) radioButton3.Text = ab3;
  69.            
  70.  
  71.            
  72.            
  73.  
  74.             foreach (RadioButton control in this.Controls.OfType<RadioButton>())
  75.             {
  76.                 control.Checked = false;
  77.             }
  78.             timer1.Stop();
  79.         }
  80.     }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement