MegastoRM

Untitled

Apr 14th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.43 KB | None | 0 0
  1. Private Sub CmdIzracunaj_Click()
  2.     Dim X As Integer
  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.     privremeno = (X - ZBI)
  15.    
  16.     If privremeno >= 0 Then
  17.         Y = Sqr(privremeno * X)
  18.    
  19.         TekstIspis.Text = Y
  20.     End If
  21.     ' ne ide dalje jer je broj manji od 0
  22. End Sub
Advertisement
Add Comment
Please, Sign In to add comment