Skip to content

Instantly share code, notes, and snippets.

@mrnirva
Created September 4, 2020 12:16
Show Gist options
  • Save mrnirva/240f712410f1f53b0bf651bbb4a744bc to your computer and use it in GitHub Desktop.
Save mrnirva/240f712410f1f53b0bf651bbb4a744bc to your computer and use it in GitHub Desktop.
package donguler;
public class Donguler {
public static void main(String[] args) {
// While Döngüsü
int sayi = 0;
while(sayi < 5){
System.out.println("Sayi Değeri: "+sayi);
sayi++;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment