Advertisements
Advertisements
Question
Write a program in Java to generate all the alternate letters in the range of letters from A to Z.
Answer in Brief
Solution
public class Q3
{ public static void main(String args[])
{ System.out.printIn("Alternate letter from A to Z:");
for (int i = 65; i <= 90; i += 2)
System.out.println((char) i);
}}
shaalaa.com
Is there an error in this question or solution?
Chapter 2: Library Classes - EXERCISES [Page 179]