1 / 9

Работа с операторите на Visual Basic

Работа с операторите на Visual Basic. 1. Формула. Конструкция, която комбинира числа, променливи, оператори и ключови думи, за да създаде нова стойност. Оператори- знаци, които извършват операции (+- събиране, *- умножение и др.). 2. VB осигурява следните оператори:.

gloria-todd
Download Presentation

Работа с операторите на Visual Basic

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Работа с операторите на Visual Basic

  2. 1. Формула • Конструкция, която комбинира числа, променливи, оператори и ключови думи, за да създаде нова стойност. • Оператори- знаци, които извършват операции (+- събиране, *- умножение и др.).

  3. 2. VB осигурява следните оператори:

  4. 3. Създайте програма- калкулатор за основните операции

  5. 4. Програмен код Dim First, Second'declare variables First = Val(Text1.Text) 'fetch and convert numbers Second = Val(Text2.Text) If Option1.Value = True Then Label1.Caption = First + Second End If If Option2.Value = True Then Label1.Caption = First - Second End If If Option3.Value = True Then Label1.Caption = First * Second End If If Option4.Value = True Then Label1.Caption = First / Second End If

  6. 5. Функции • Подпрограма, която съдържа алгоритъм с формула и/или формули. • Изразите във функцията зависят от аргументите й. • Функцията връща само една стойност.

  7. 6. Математически функции на VB

  8. 7. Приоритет на операциите

  9. 8. Създайте програма- калкулаторза по- сложни операции

More Related