Write a Java program to print the ascii value of a given character
- برمجة جافا
- برمجة
- 2021-05-01
- razanmazen8711884270
الأجوبة
public class Exercise41 {
public static void main(String[] String) {
int chr = 'Z';
System.out.println("The ASCII value of Z is :"+chr);
}
}
Sample Output:
The ASCII value of Z is :90
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال