Advertisements
Advertisements
Question
Write a program in Java to input a character. Find and display the next 10th character in the ASCII table.
Answer in Brief
Solution
import java.util.*;
public class Q1
{public static void main(String args[])
{ Scanner in = new Scanner(System.in);
char ch;
int x;
System.out.printIn("Enter the character");
ch = in.next().charAt(0);
x = (int) ch + 10;
System.out.println((char) x);
}}
shaalaa.com
Is there an error in this question or solution?
Chapter 2: Library Classes - EXERCISES [Page 179]