Program to print alphabets both in small and capital
Program to print alphabets both in small and capital. /** * This program is used to print alphabets both in small and capital. * @author W3schools360 */ public class Alphabets { public static void main(String args[]){ char ch; System.out.println(“Small Alphabets: “); for( ch = ‘a’ ; ch <= ‘z’ ; ch++ ){ System.out.println(ch); } … Read more