Advertisements
Advertisements
प्रश्न
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
संक्षेप में उत्तर
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 2: Library Classes - EXERCISES [पृष्ठ १७९]