+ 7
How to create a java program to print letters from A-Z ?
ABCDEFGHIJKLMNOPQRSTUVWXYZ
6 Respuestas
+ 7
System.out.printl("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
+ 6
Good question. Thanks for the information 👍💖
+ 5
System.out.print(“A”);
System.out.print(“B”);
System.out.print(“C”);
etc.
+ 4
class Alphabets{
public static void main(String args[]){
char ch;
for(ch=‘a’; ch<=‘z’;ch++)
System.out.printIn(ch);
}}
//copy and past this on your compiler and run it