Saved Bookmarks
| 1. |
Rewrite the following code using WHILE loop : int x=100 ; for (int i=2;i<=22;i=i+4){ jTextAreal.append("\n"+(i+x) ) ; x=x-2 ; } |
|
Answer» int x = 100 , i = 2; while (i < = 22) { jTextAreal . append("\n"+(i + x) ) ; x = x - 2 ; i = i + 4; } |
|