0
Find the output
int I=1,a=3; I=a++; jtextfield1.settext(string.value of (I));
1 Antwoord
+ 3
Should be 3.
a = 3, l = a++ --> l = 3, a = 4
String.valueOf(l) converts the int into a String.
int I=1,a=3; I=a++; jtextfield1.settext(string.value of (I));