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.*;
import java.lang.*;
public class DecimalToASCII{
public static void main(String args[]) throws IOException{
BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the Decimal number:");
String str = buff.readLine();
int d = Integer.parseInt(str);
char c = (char) d ;
System.out.println("Enter decimal number is:=" + d);
System.out.println("ASCII OF:=" + c );
}
}
|
Download of this
program:
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> |

|
Current Comments
0 comments so far (post your own) View All Comments Latest 10 Comments: