- 1
How to find ascii code
2 Antworten
+ 3
fixed your code
public class Program{
public static void main(String[] args) {
char a='B',b='b',c='M',d='m',e='Y',f='y',g='@',h='3',i='8';
System.out.println("The ASCII value of following are:"+(int)(a)+" "+(int)(b)+" "+(int)(c)+" "+(int)(d)+" "+(int)(e)+" "+(int)(f)+" "+(int)(g)+" "+(int)(h)+" "+(int)(i));
}
}
0
I think your question has to be reformulated
But as it is, the answer is.... Google it