This is the simple program of java.lang package. In this example, we are going to convert decimal number to its corresponding character.
Convert Decimal To Character
This is the simple program of java.lang package. In this example, we are going to convert decimal number to its corresponding character.
Code Description:
Here, define class named ?DecimalToChar? for java component. This program takes a decimal value. Type casting (char) d ) is done to convert the decimal into the corresponding character..
Here is the code of this program:
import java.io.*;
|
Output of this program given below.
C:\corejava>java DecimalToASCII Enter the Decimal number: 65 Enter decimal number is:=65 ASCII OF:=A C:\corejava> |