Explanation: No output is printed. CharArrayReader object input1 contains string “abcdefgh” whereas object input2 contains string “bcde”, when while((i=input1.read())==(j=input2.read())) is executed the starting character of each object is compared since they are unequal control comes out of loop and nothing is printed on the screen.
מיין לפי
Matan Vaknin0 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 1
מישהו שהבין ויכול להסביר?
Noa Stern2 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 30
ממה שאני הבנתי יש בInput1 רשימה של מחרוזות : "abcdefgh" ובinput2 יש "bcde" כי הוא לוקח את מה שמתא 1 עד תא 4. ואז בwhile הראשון הוא מנסה לראות אם a שווה לb והתנאי מקבל false אז הוא לא מדפיס כלום. אם מישהו בדק הרצה או משהו תדייקו אותי