Last active
February 12, 2020 21:11
-
-
Save mukireus/c0e3536cece5a73d2617b168249b01e6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
int sayi = 10; | |
String mesaj; | |
if (sayi == 10) { | |
mesaj = "Doğru"; | |
} else mesaj = "Yanlış"; | |
print(mesaj); | |
//__________________________________// | |
mesaj = (sayi == 10) ? "Doğru" : "Yanlış"; | |
print(mesaj); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment