Advertisements
Advertisements
प्रश्न
Write a program in Java to input a character. Find and display the next 10th character in the ASCII table.
थोडक्यात उत्तर
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 2: Library Classes - EXERCISES [पृष्ठ १७९]