Home Java Java-conversion Convert Decimal To Character



Convert Decimal To Character
Posted on: July 10, 2007 at 12:00 AM
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.*;
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>

Related Tags for Convert Decimal To Character:
javaccomclasscastingconverttypechardecimalcomponentvaluenameintthiscastcharactercasdefineforcteprogramtoramciastepeiminasmntsticajclestocaltnamedmeintoprodosspesprackishaaractrtvassthavstalufinprndonomogro


More Tutorials from this section

Ask Questions?    Discuss: Convert Decimal To Character   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.