1. 1.
    0
    dim a as integer
    dim b as integer
    a = text1.text
    b = text2.text
    if option1.value = true then text3.text = a + b
    if option2.value = true then text3.text = a - b
    if option3.value = true then text3.text = a * b
    if option4.value = true then text3.text = a / b
    ···
   tümünü göster