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.

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.

Convert Decimal To 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.*;
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 = (chard ;
  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>