こゆこと
Dim a As Integer
a = Val(TextBox1.Text)
If RadioButton1.Checked = True Then
TextBox2.Text = Format(a * 2 * Math.PI, "#.###")
ElseIf RadioButton2.Checked = True Then
TextBox2.Text = Format(Math.PI * a ^ 2, "#.###")
ElseIf RadioButton3.Checked = True Then
TextBox2.Text = Format(4 * Math.PI * a ^ 2, "#.###")
ElseIf RadioButton4.Checked = True Then
TextBox2.Text = Format(4 / 3 * Math.PI * Math.Pow(a, 3), "#.###")
End If
End Sub
よばれてとびでて、
Dim a As Integer
Randomize()
a = Math.Floor(Rnd() * 4)
If a = 1 Then
TextBox1.Text = "大吉"
ElseIf a = 2 Then
TextBox1.Text = "中吉"
ElseIf a = 3 Then
TextBox1.Text = "小吉"
ElseIf a = 0 Then
TextBox1.Text = "凶"
End If