MegastoRM

Untitled

Apr 14th, 2016
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.40 KB | None | 0 0
  1. Private Sub CmdIzracunaj_Click()
  2.     Dim X As Double
  3.     Dim ZBI As Integer
  4.     Dim Y As Double
  5.     Dim privremeno As Double
  6.    
  7.     X = TekstX.Text
  8.     ZBI = TekstZBI.Text
  9.    
  10.     If ZBI < 1 Then
  11.         ZBI = 10
  12.     End If
  13.    
  14.    
  15.     If X <> -10 Then
  16.         privremeno = 2 * (X * X) - 5 * X - 4
  17.    
  18.         Y = privremeno / (X + 5)
  19.    
  20.         TekstIspis.Text = Y
  21.     End If
  22. End Sub
Advertisement
Add Comment
Please, Sign In to add comment