Created
February 11, 2016 17:29
-
-
Save ardamavi/175a06c75dfa38286dfb to your computer and use it in GitHub Desktop.
Java ile beş satırlık for döngüsü yaratma.
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
| // Arda Mavi | |
| for(int i = 0; i<=5;i++){ | |
| // i bir tamsayı ve 0 değerine eşit. | |
| // Döngü i, 5'e eşit ya da 5'den küçük olana kadar devam edecek. | |
| // i sayısı her tekrarda 1 arttırılacak. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment