0
Why is the answer A?
char x = 'B' ; char y = 'b' ; char z = 'a' ; z+=x-y; System.out.print(z);
3 Answers
+ 2
ĐлДĐșŃĐ”Đč ĐĐŸĐ»ĐŽŃŃĐ”ĐČ , you should check the ascii codes of each character perform the arithmetic operations and then find the character which is related to the number of z đ±
0
Thanks