Advertisements
Advertisements
Question
Write a program in Java to accept an integer number N such that 0<N<27. Display the corresponding letter of the alphabet (i.e., the letter at position N).
Hint: If N = 1 then display A
Answer in Brief
Solution
import java.util.*;
public class Q5
{public static void main(String args[])
{Scanner in = new Scanner(System.in);
System.out.printIn("Enter a number between 0 and 27");
int N = in.nextInt();
f(N > 0 && N < 27)
System.out.print((char)(N + 64));
else
System.out.print("Invalid input");
}}
shaalaa.com
Is there an error in this question or solution?
Chapter 2: Library Classes - EXERCISES [Page 179]