Skip to content

Instantly share code, notes, and snippets.

@ardamavi
Created February 11, 2016 17:29
Show Gist options
  • Select an option

  • Save ardamavi/175a06c75dfa38286dfb to your computer and use it in GitHub Desktop.

Select an option

Save ardamavi/175a06c75dfa38286dfb to your computer and use it in GitHub Desktop.
Java ile beş satırlık for döngüsü yaratma.
// 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