How to find ascii code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to find ascii code

21st Feb 2017, 5:29 PM
Ashok Khetan
Ashok Khetan - avatar
2 Answers
+ 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)); } }
21st Feb 2017, 7:55 PM
Burey
Burey - avatar
0
I think your question has to be reformulated But as it is, the answer is.... Google it
21st Feb 2017, 6:54 PM
Dago VF
Dago VF - avatar