Advertisement
Teknogezgin

For ile alfabenin harflerini yazdırma

May 25th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package alfabe;
  2. // Author: Mehmet Gündoğdu - teknogezgin.com
  3.  
  4. public class alfabeyiyaz {
  5.     public static void main (String [] args){
  6.         int i = 1;
  7.        
  8.         for(char x = 'a' ; x<='z'  ; x++){
  9.             System.out.println("Alfabenin " + i + " .harfi = "+ x);
  10.             i++;
  11.         }
  12.        
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement