Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Selectati varianta corectă pentru codul din buclă care va afisa 2 rezultate în ordine crescătoare.
int a = 9;while (a <= 10) {System.out.println(" a = " + a);a++;}
int a = 9;while (a < 10) {System.out.println(" a = " + a);a++;}
int a = 9;while (a =< 10) {System.out.println(" a = " + a);a++;}
int a = 10;while (a >= 9) {System.out.println(" a = " + a);a--;}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!