0-100 arasındaki tek sayıları ekrana yazdıran program
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
public static void main(String[] args) { int sayi; for (sayi = 0; sayi < 100; sayi++) { if(sayi%2==1) System.out.println("Değer = " + sayi); } } |
Add Comment