Computer Science, asked by sofiya275, 1 year ago

pls answer it fast it's very urgent


change it into while and do while loop....​

Attachments:

Answers

Answered by Anonymous
1

Answer:

       int n=1;

     

       while(n<=10)

       {

           System.out.println(n*n);

           n++;

       }

Explanation:

Similar questions