plzz clarify my code error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
13th Aug 2020, 5:49 PM
kumar_bittu
kumar_bittu - avatar
2 Answers
+ 1
1) Where are you actually taking the input? 2) you declared al, bl arrays as integer type and accessing like a, b so both different.. 3) toCharArray() is a method works on strings but not on integer array.. 4) for(char c: a.toCharArray()){ //taking int to char, again next converting to int again.. int index= (int) c; ....} Oh I understood, you are trying to take 2 strings then take 2 string input to a, b just like String a =" string1"; String b = "string2"; Now I hope it works... Edit : kumar_bittu yes. Just add those 2 strings to your program. It works
13th Aug 2020, 6:19 PM
Jayakrishna 🇮🇳
0
a b are not declared
13th Aug 2020, 6:15 PM
zemiak