Facebook
From Adrian Pietrzak, 5 Years ago, written in Java.
Embed
Download Paste or View Raw
Hits: 255
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         char []tab = new char[26];
  8.  
  9.         for (int i = 0; i<26; i++) {
  10.             tab[i] = (char)(i+65);
  11.         }
  12.  
  13.         for (int i=0; i<26; i++) {
  14.             System.out.println(tab[i]);
  15.         }
  16.     }
  17. }