Created
December 5, 2016 23:37
-
-
Save ilhamarrouf/cb80a992b3ca84011b07182bde7b96ff to your computer and use it in GitHub Desktop.
Sintaks Struktur Kontrol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (kondisi) { | |
statement; | |
} elseif (kondisi2) { | |
statement2; | |
} elseif (kondisi3) { | |
statement3; | |
} else { | |
statement4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment