Computer Science, asked by ramandeepkaur9507, 3 months ago

plz help solving this question​

Attachments:

Answers

Answered by yadavkrishan70
0

Answer:

22nd grade (22)-(21)+(2222)

Answered by atrs7391
1

Program Given:

       int a=19;

       while(a>=1)

       {

           if(a%5==0)

               break;

           System.out.println(a);

           a=a+2;

       }

Output of the program is:

19

21

23

Similar questions