How to create a java program to print letters from A-Z ? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 7

How to create a java program to print letters from A-Z ?

ABCDEFGHIJKLMNOPQRSTUVWXYZ

19th Sep 2018, 6:52 AM
Googel
Googel - avatar
5 Antworten
+ 7
System.out.printl("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
19th Sep 2018, 7:00 AM
BraveHornet
BraveHornet - avatar
+ 6
Good question. Thanks for the information 👍💖
19th Sep 2018, 7:05 AM
NimWing Yuan
NimWing Yuan - avatar
19th Sep 2018, 11:51 AM
Googel
Googel - avatar
+ 5
System.out.print(“A”); System.out.print(“B”); System.out.print(“C”); etc.
21st Sep 2018, 1:37 AM
I need a better name.
I need a better name. - avatar
+ 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
19th Sep 2018, 9:38 AM
thulani joyisa
thulani joyisa - avatar