What will be displayed in jTextArea1 after the execution of the following loop?
for (int i = 5; i >= 2; i- -)
jTextArea1.setText(jTextArea1.getText() + ” ” +Integer.toString (i*i));
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The correct output
25 16 9 4