Write a program in java to print the Alphabets (A, B, C, D ….. Z) Programming Beginner To Advanced class Print_Alphabets{ public static void main(String args[]) { for(char j='A';j<='Z';j++) { System.out.print(j+"\t"); } } } Share This: Facebook Twitter Google+ Stumble Digg Related Posts:Write a program in java to accept a number and check number is Prime palindrome or not. var aax_size='728x90'; var aax_pubname = 'javapba-21'; var aax_src='302'; First check the number is prime or not , i… Read MoreWrite a program in java to accept a number and display the new number after removing all zeros. var aax_size='728x90'; var aax_pubname = 'javapba-21'; var aax_src='302'; import java.util.*;class Removing_Zero{&nb… Read MoreWrite a program in java to print the Odd series var aax_size='728x90'; var aax_pubname = 'javapba-21'; var aax_src='302'; class odd_series{ publi… Read MoreWrite a program in Java to print the Even series. var aax_size='728x90'; var aax_pubname = 'javapba-21'; var aax_src='302'; class even_series{public static void main(… Read MoreWrite a program in java to accept a number and check whether the number is Duck number or not. var aax_size='728x90'; var aax_pubname = 'javapba-21'; var aax_src='302'; A number is said to be Duck if the digit z… Read More