Answers for "given asci numbers as input print alphabets corresponding to the numbers as output java"

1

Java program to print alphabets using ascii values

// Java program to print alphabets using ascii values
public class PrintAlphabetUsingAscii 
{
   public static void main(String[] args) 
   {
      char ch = 'B';
      int ascii = ch;
      int castAscii = (int) ch;   
      System.out.println("ascii value of " + ch + " is: " + ascii);
      System.out.println("ascii value of " + ch + " is: " + castAscii);
   }
}
Posted by: Guest on February-19-2021

Code answers related to "given asci numbers as input print alphabets corresponding to the numbers as output java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language