Java: Print the ascii value of a given character
Java Basic: Exercise-41 with Solution
Write a Java program to print the ASCII value of a given character.
Pictorial Presentation:
Sample Solution:
Java Code:
public class Exercise41 {
public static void main(String[] args) {
// Define an integer variable 'chr' and assign the ASCII value of 'Z' to it.
int chr = 'Z';
// Print the ASCII value of 'Z' to the console.
System.out.println("The ASCII value of Z is: " + chr);
}
}
Sample Output:
The ASCII value of Z is :90
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program to list the available character sets in charset objects.
Next: Write a Java program to input and display your password.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/basic/java-basic-exercise-41.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics