Jump to content

İf Elseif Konusunda Yardım


Ragebar
 Share

Recommended Posts

Autoitteki en basit komutlardan biridir. Örnek veriyorum, sen kurcalarsın.

 

Global $Degisken_1 = 5
Global $Degisken_2 = 5

If $Degisken_1 = $Degisken_2 Then
    MsgBox(64, "", "Değişkenler eşit!")
Else
    MsgBox(64, "", "Değişkenler eşit deyil!")
EndIf
; -------------
$Degisken_1 += 1 ;Bir arttıralım

If $Degisken_1 = $Degisken_2 Then
    MsgBox(64, "", "Değişkenler eşit!")
ElseIf $Degisken_1 > $Degisken_2 Then
    MsgBox(64, "", "Birinci değişken ikinci değişkenden büyük!")
ElseIf $Degisken_1 < $Degisken_2 Then
    MsgBox(64, "", "Ikinci değişken birinci değişkenden büyük!")
EndIf
; -------------
$Degisken_2 += 2 ;iki arttıralım
If $Degisken_1 = $Degisken_2 Then
    MsgBox(64, "", "Değişkenler eşit!")
ElseIf $Degisken_1 > $Degisken_2 Then
    MsgBox(64, "", "Birinci değişken ikinci değişkenden büyük!")
ElseIf $Degisken_1 < $Degisken_2 Then
    MsgBox(64, "", "Ikinci değişken birinci değişkenden büyük!")
EndIf
; -------------

If FileExists("C:\Windows") Then
    MsgBox(64, "", "C:\Windows mevcut")
Else
    MsgBox(64, "", "C:\Windows mevcut deyil!")
EndIf
; -------------

If Not FileExists("C:\Windows1") Then
    MsgBox(64, "", "C:\Windows mevcut deyil!")
Else
    MsgBox(64, "", "C:\Windows mevcut")
EndIf
; -------------
vs. vs. gibi çoğaltmak mümkün....

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...